mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-25 22:24:16 +00:00
Merge pull request #116 from Aimless-Wanderer/patch-2
wscript: fix join method usage
This commit is contained in:
commit
e67d115d9d
2
wscript
2
wscript
@ -73,7 +73,7 @@ def configure(conf):
|
|||||||
conf.fatal('Please set a build type, for example "-T release"')
|
conf.fatal('Please set a build type, for example "-T release"')
|
||||||
elif not conf.options.BUILD_TYPE in valid_build_types:
|
elif not conf.options.BUILD_TYPE in valid_build_types:
|
||||||
conf.end_msg(conf.options.BUILD_TYPE, color='RED')
|
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)
|
conf.end_msg(conf.options.BUILD_TYPE)
|
||||||
|
|
||||||
# -march=native should not be used
|
# -march=native should not be used
|
||||||
|
Loading…
x
Reference in New Issue
Block a user