summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/depends.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/build/depends.py b/build/depends.py
index 7adc27faad..09ddc94b5e 100644
--- a/build/depends.py
+++ b/build/depends.py
@@ -698,13 +698,9 @@ class Reverb(Dependence):
class QtKeychain(Dependence):
def configure(self, build, conf):
- # Debian/Ubuntu: qtkeychain
- # Fedora: qt5keychain
- if conf.CheckLib(['qt5keychain']):
- build.env.Append(CPPDEFINES='__QT5KEYCHAIN__')
- elif not conf.CheckLib(['qtkeychain']):
+ if not conf.CheckLib(['qt5keychain']):
raise Exception(
- "Could not find qtkeychain/qt5keychain.")
+ "Could not find qt5keychain.")
class MixxxCore(Feature):