summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index c735a01e75..3de5481e98 100644
--- a/wscript
+++ b/wscript
@@ -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)