aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-02-24 04:02:48 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-02-24 04:02:48 -0800
commitcd4b938087edbbca68c669419fb2a315409d3160 (patch)
tree83650078c276c200b9014d2be1357a15812ff53b /scripts
parent72c3b49dcbd800eb54e60ad34d0a9db5f3de9395 (diff)
downloadhistory-cd4b938087edbbca68c669419fb2a315409d3160.tar.gz
[PATCH] Fix make xconfig on /lib64 systems
From: Andi Kleen <ak@suse.de>, R. J. Wysocki Without this make xconfig doesn't find the Qt library on systems using /lib64 (like x86-64)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
index 99d4ac48efc61..1e47fe4af060c 100644
--- a/scripts/kconfig/Makefile
+++ b/scripts/kconfig/Makefile
@@ -95,7 +95,7 @@ clean-files := libkconfig.so lkc_defs.h qconf.moc .tmp_qtcheck \
HOSTCFLAGS_lex.zconf.o := -I$(src)
HOSTCFLAGS_zconf.tab.o := -I$(src)
-HOSTLOADLIBES_qconf = -L$(QTDIR)/lib -Wl,-rpath,$(QTDIR)/lib -l$(QTLIB) -ldl
+HOSTLOADLIBES_qconf = -L$(QTDIR)/lib -L$(QTDIR)/lib64 -Wl,-rpath,$(QTDIR)/lib -l$(QTLIB) -ldl
HOSTCXXFLAGS_qconf.o = -I$(QTDIR)/include
HOSTLOADLIBES_gconf = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --libs`