fix linux detection

This commit is contained in:
Robin Gareus 2015-03-07 10:54:37 +01:00
parent 13bad670fa
commit 3dac4b760b

View File

@ -973,11 +973,11 @@ def configure(conf):
print("Coreaudio backend is only available for OSX")
sys.exit(1)
if sys.platform == 'linux' and conf.env['BUILD_WAVESBACKEND']:
if re.search ("linux", sys.platform) != None and conf.env['BUILD_WAVESBACKEND']:
print("Waves Backend is not for Linux")
sys.exit(1)
if sys.platform != 'linux' and conf.env['BUILD_ALSABACKEND']:
if re.search ("linux", sys.platform) == None and conf.env['BUILD_ALSABACKEND']:
print("ALSA Backend is only available on Linux")
sys.exit(1)