summaryrefslogtreecommitdiffstats
path: root/build/mixxx.py
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2019-08-23 16:40:12 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2019-08-23 16:43:45 +0200
commit8507218953c9dd0769d6c3287f95aed51bcebfae (patch)
treeada3b226f8098fd05f445f7b58758b5dd9203c67 /build/mixxx.py
parent03fad27e1f0f18ec83c9a4bc5f03f28948cd44fb (diff)
scons: Catch CalledProcessErrors to allow fallback to defaults
Diffstat (limited to 'build/mixxx.py')
-rw-r--r--build/mixxx.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/mixxx.py b/build/mixxx.py
index 370134fceb..3208ea6315 100644
--- a/build/mixxx.py
+++ b/build/mixxx.py
@@ -173,6 +173,9 @@ class MixxxBuild(object):
except OSError:
# pkg-config is not installed
pass
+ except subprocess.CalledProcessError:
+ # pkg-config failed to find Qt5Core
+ pass
else:
default_qtdir = output.decode('utf-8').rstrip()