diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2008-09-09 18:27:37 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2008-09-09 18:27:37 +0000 |
commit | 19ed11bab11f26f73ea5e35f34ccf7c4f68e60ea (patch) | |
tree | 6f74b2c4ff867f9a7d03c0bfde68019a6b9f6092 /eclass/kde.eclass | |
parent | make detex and dvi2tty optional (diff) | |
download | historical-19ed11bab11f26f73ea5e35f34ccf7c4f68e60ea.tar.gz historical-19ed11bab11f26f73ea5e35f34ccf7c4f68e60ea.tar.bz2 historical-19ed11bab11f26f73ea5e35f34ccf7c4f68e60ea.zip |
Small fix to ensure the correct kconfig_compiler is used.
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r-- | eclass/kde.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index f9d7fb50faed..bf71491c7926 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.217 2008/08/27 15:29:26 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.218 2008/09/09 18:27:37 cryos Exp $ # @ECLASS: kde.eclass # @MAINTAINER: @@ -369,6 +369,9 @@ EOF myconf="${myconf} --enable-libsuffix=$(get_libdir | sed s/lib//)" fi + # The configure checks for kconfig_compiler do not respect PATH + export KCONFIG_COMPILER="${KDEDIR}/bin/kconfig_compiler" + # Sometimes it doesn't get the include and library paths right, # so hints them. if [[ -z ${PREFIX} || ${PREFIX} != ${KDEDIR} ]]; then |