* make xconfig needs QTDIR; though qt is in /usr
@ 2004-06-16 13:42 Chris Lingard
0 siblings, 0 replies; only message in thread
From: Chris Lingard @ 2004-06-16 13:42 UTC (permalink / raw)
To: Michael Elizabeth Chastain; +Cc: Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 511 bytes --]
All versions of Linux-2.6
I install qt and all other stuff in /usr; and do not set
QTDIR, as it is not needed.
Can /usr be added to the scripts/kconfig/Makefile?
I attach a patch. The last two variables of:
@set -e; for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
if [ -f $$d/include/qconfig.h ]; then DIR=$$d; break; fi; \
seem pointless as it is looking for a header file.
The patch just adds /usr to the end; but I suggest that the
line could be
@set -e; for d in $$QTDIR /usr; do \
Chris Lingard
[-- Attachment #2: linux-2.6.7-qtdir_in_usr --]
[-- Type: text/x-diff, Size: 555 bytes --]
diff -Naur linux-2.6.7.old/scripts/kconfig/Makefile linux-2.6.7/scripts/kconfig/Makefile
--- linux-2.6.7.old/scripts/kconfig/Makefile 2004-04-05 18:19:04.000000000 +0100
+++ linux-2.6.7/scripts/kconfig/Makefile 2004-06-16 13:33:38.988229264 +0100
@@ -112,7 +112,7 @@
# QT needs some extra effort...
$(obj)/.tmp_qtcheck:
- @set -e; for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
+ @set -e; for d in $$QTDIR /usr/share/qt* /usr/lib/qt* /usr; do \
if [ -f $$d/include/qconfig.h ]; then DIR=$$d; break; fi; \
done; \
if [ -z "$$DIR" ]; then \
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-06-16 13:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-16 13:42 make xconfig needs QTDIR; though qt is in /usr Chris Lingard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox