From 1772bb165787a6272dcc5bcbb7e869b6c17066df Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 27 May 2019 13:42:52 +0200 Subject: [PATCH] Fix SCons automatic platform detection on Linux --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index b75ca24da69c..17cf779d4a17 100644 --- a/SConstruct +++ b/SConstruct @@ -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': @@ -239,7 +239,7 @@ else: for x in platform_list: print("\t" + x) print("\nPlease run SCons again and select a valid platform: platform=") - + if selected_platform != "": print("Automatically detected platform: " + selected_platform) env_base["platform"] = selected_platform