summaryrefslogtreecommitdiff
path: root/scripts/kconfig
authorkergoth <kergoth>2002-11-05 23:27:42 (UTC)
committer kergoth <kergoth>2002-11-05 23:27:42 (UTC)
commitcc85b20f907834b72222b15189698b4c48b53ee6 (patch) (unidiff)
treebb51e9083cef979cedba86dd2c6b33a2eb50792c /scripts/kconfig
parent76f38e36b7a875a1763d1e6ce5e00cc8dd736263 (diff)
downloadopie-cc85b20f907834b72222b15189698b4c48b53ee6.zip
opie-cc85b20f907834b72222b15189698b4c48b53ee6.tar.gz
opie-cc85b20f907834b72222b15189698b4c48b53ee6.tar.bz2
prefer qt-mt, fallback to qt
Diffstat (limited to 'scripts/kconfig') (more/less context) (ignore whitespace changes)
-rw-r--r--scripts/kconfig/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
index caad231..6782d4a 100644
--- a/scripts/kconfig/Makefile
+++ b/scripts/kconfig/Makefile
@@ -19,15 +19,13 @@ endif
19endif 19endif
20 20
21ifndef QTLIB 21ifndef QTLIB
22ifeq ($(shell if [ -e $(HOSTQTDIR)/lib/libqt.so ]; then echo foundit; fi),foundit)
23QTLIB=-lqt
24else
25ifeq ($(shell if [ -e $(HOSTQTDIR)/lib/libqt-mt.so ]; then echo foundit; fi),foundit) 22ifeq ($(shell if [ -e $(HOSTQTDIR)/lib/libqt-mt.so ]; then echo foundit; fi),foundit)
26QTLIB=-lqt-mt 23QTLIB=-lqt-mt
27else 24else
28QTLIB=-lqt 25ifneq ($(shell if [ -e $(HOSTQTDIR)/lib/libqt.so ]; then echo foundit; fi),foundit)
29$(warning Unable to locate libqt.so!) 26$(warning Unable to locate libqt.so!)
30endif 27endif
28QTLIB=-lqt
31endif 29endif
32endif 30endif
33 31