diff options
author | Caleb Tennis <caleb@gentoo.org> | 2007-12-21 21:10:34 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2007-12-21 21:10:34 +0000 |
commit | 1f84fb4f2bdfc14c222314b969a0738769258757 (patch) | |
tree | 8337cbf120f58a0e7141abc908969d6f0d8744a3 /eclass/qt4-build.eclass | |
parent | A little cleaner on the packages (diff) | |
download | historical-1f84fb4f2bdfc14c222314b969a0738769258757.tar.gz historical-1f84fb4f2bdfc14c222314b969a0738769258757.tar.bz2 historical-1f84fb4f2bdfc14c222314b969a0738769258757.zip |
Use the local qmake and not the one on the file system, because if we're building qt-core there may not be one on the filesystem yet
Diffstat (limited to 'eclass/qt4-build.eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index bb129bb924a3..d41bb11f8bda 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.1 2007/12/21 16:11:18 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.2 2007/12/21 21:10:34 caleb Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -79,7 +79,7 @@ build_directories() { local dirs="$@" for x in ${dirs}; do cd "${S}"/${x} - qmake "LIBS+=-L${QTLIBDIR}" && emake || die + "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" && emake || die done } |