summaryrefslogtreecommitdiffstats
path: root/build/qt5.py
diff options
context:
space:
mode:
authorRaphael Graf <r@undefined.ch>2019-06-05 10:10:49 +0200
committerRaphael Graf <r@undefined.ch>2019-06-05 10:10:49 +0200
commit68e54f7b59295797d844c28da1772e6ae24f08bb (patch)
tree05f48bfc721caa348c13c4884a2b74e5c76c0094 /build/qt5.py
parent0f7481247cc23ff8b0746807bfc3719e33639412 (diff)
Fix the checks for bsd platform
Diffstat (limited to 'build/qt5.py')
-rw-r--r--build/qt5.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/qt5.py b/build/qt5.py
index 30adc4067e..90a9422780 100644
--- a/build/qt5.py
+++ b/build/qt5.py
@@ -936,7 +936,7 @@ def enable_modules(self, modules, debug=False, crosscompiling=False, staticdeps=
except: pass
debugSuffix = ''
if (sys.platform.startswith("linux") or sys.platform.startswith("darwin") or
- sys.platform.find("bsd")) and not crosscompiling :
+ sys.platform.find("bsd") >= 0) and not crosscompiling :
if debug : debugSuffix = '_debug'
# Call _find_qtdirs with QtCore to get at least one initialized for later usage with RPATH
qt_dirs = _find_qtdirs("$QT5DIR","QtCore")