Fix SCons automatic platform detection on Linux
This commit is contained in:
parent
86f9d1bf5e
commit
1772bb1657
1 changed files with 2 additions and 2 deletions
|
@ -229,7 +229,7 @@ elif env_base['p'] != "":
|
|||
else:
|
||||
# Missing `platform` argument, try to detect platform automatically
|
||||
if sys.platform.startswith('linux'):
|
||||
selected_platform = 'linux'
|
||||
selected_platform = 'x11'
|
||||
elif sys.platform == 'darwin':
|
||||
selected_platform = 'osx'
|
||||
elif sys.platform == 'win32':
|
||||
|
|
Loading…
Reference in a new issue