mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 09:56:22 +01:00
wscript: fix syntax
Same as https://github.com/FWGS/hlsdk-xash3d/pull/116
This commit is contained in:
parent
da65cc99d9
commit
c57d8995c6
2
wscript
2
wscript
@ -101,7 +101,7 @@ def configure(conf):
|
||||
conf.fatal('Please set a build type, for example "-T release"')
|
||||
elif not conf.options.BUILD_TYPE in valid_build_types:
|
||||
conf.end_msg(conf.options.BUILD_TYPE, color='RED')
|
||||
conf.fatal('Invalid build type. Valid are: %s' % valid_build_types.join(', '))
|
||||
conf.fatal('Invalid build type. Valid are: %s' % ', '.join(valid_build_types))
|
||||
conf.end_msg(conf.options.BUILD_TYPE)
|
||||
|
||||
# -march=native should not be used
|
||||
|
Loading…
Reference in New Issue
Block a user