summaryrefslogtreecommitdiffstats
path: root/build/mixxx.py
diff options
context:
space:
mode:
authorUwe Klotz <uwe_klotz@web.de>2017-11-17 11:02:49 +0100
committerUwe Klotz <uwe_klotz@web.de>2017-11-17 11:03:57 +0100
commitdafe3cfdf2f71a92389455d47697a996db7e2f53 (patch)
treedb58ab703f535dd548ba1f4b6a4c450ee4a994c1 /build/mixxx.py
parent1e6511a88dfc6c284c13d1eb329e931b225e6952 (diff)
Restore detection of target platform 'bsd'
Diffstat (limited to 'build/mixxx.py')
-rw-r--r--build/mixxx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/mixxx.py b/build/mixxx.py
index e4e1a173c5..2664f7bb37 100644
--- a/build/mixxx.py
+++ b/build/mixxx.py
@@ -261,7 +261,7 @@ class MixxxBuild(object):
if os.name == 'nt' or sys.platform == 'win32':
return 'windows'
# Should cover {Net,Open,Free,DragonFly}BSD, but only tested on OpenBSD
- if sys.platform.startswith('bsd'):
+ if 'bsd' in sys.platform:
return 'bsd'
if sys.platform.startswith('linux'):
return 'linux'