Skip to content
Snippets Groups Projects
Commit 06490cab authored by Andre Sailer's avatar Andre Sailer
Browse files

getPlatform: fix CXXOPTIONS capitalisation

parent 60870df9
No related branches found
No related tags found
1 merge request!2254Fixes for new pylint version: getPlatform et al.
Pipeline #7384117 passed
...@@ -15,7 +15,7 @@ arch = platform.machine() ...@@ -15,7 +15,7 @@ arch = platform.machine()
system = platform.system() system = platform.system()
#---Determine external architecture and extra options---------------- #---Determine external architecture and extra options----------------
architecture = os.getenv('ARCHITECTURE', None) architecture = os.getenv('ARCHITECTURE', None)
cxxoptions = os.getenv('cxxoptions', None) cxxoptions = os.getenv('CXXOPTIONS', None)
#---Determine the OS and version-------------------------------------- #---Determine the OS and version--------------------------------------
if system == 'Darwin' : if system == 'Darwin' :
if int(platform.mac_ver()[0].split('.')[0]) > 10 : if int(platform.mac_ver()[0].split('.')[0]) > 10 :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment