public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* PATCH Trivial fix for xconfig
@ 2004-07-19 13:51 Chris Lingard
  2004-07-19 14:09 ` Roman Zippel
  0 siblings, 1 reply; 3+ messages in thread
From: Chris Lingard @ 2004-07-19 13:51 UTC (permalink / raw)
  To: zippel; +Cc: kbuild-devel, linux-kernel

All versions of Linux 2-6

When qt is installed in /usr, then there is no need to set and
export QTDIR; but make xconfig expects this.

This patch adds /usr to the script, and removes two header search
paths that would need QTDIR set.

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-07-19 13:35:28.914128104 
+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; do \
          if [ -f $$d/include/qconfig.h ]; then DIR=$$d; break; fi; \
        done; \
        if [ -z "$$DIR" ]; then \

Signed off Chris Lingard chris@ukpost.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-07-19 16:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-19 13:51 PATCH Trivial fix for xconfig Chris Lingard
2004-07-19 14:09 ` Roman Zippel
2004-07-19 16:13   ` Chris Lingard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox