diff options
author | Caleb Tennis <caleb@gentoo.org> | 2005-07-01 15:01:49 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2005-07-01 15:01:49 +0000 |
commit | ea1cc48fd413b1a486f8a70e2d51755d6d3299fa (patch) | |
tree | a03508f49bda2d7d8cb87e65135e95f029f46a7a /eclass | |
parent | Stable on ppc64 (bug #97544) (diff) | |
download | gentoo-2-ea1cc48fd413b1a486f8a70e2d51755d6d3299fa.tar.gz gentoo-2-ea1cc48fd413b1a486f8a70e2d51755d6d3299fa.tar.bz2 gentoo-2-ea1cc48fd413b1a486f8a70e2d51755d6d3299fa.zip |
Fix qmake dir per bug #97535
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/myth.eclass | 4 | ||||
-rw-r--r-- | eclass/mythtv-plugins.eclass | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/eclass/myth.eclass b/eclass/myth.eclass index 8cdda9dec39a..1592aee1495b 100644 --- a/eclass/myth.eclass +++ b/eclass/myth.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/myth.eclass,v 1.14 2005/06/07 05:48:54 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/myth.eclass,v 1.15 2005/07/01 15:01:49 caleb Exp $ # # Author: Daniel Ahlberg <aliz@gentoo.org> # @@ -82,7 +82,7 @@ myth_src_compile() { econf ${myconf} fi - qmake -o "Makefile" "${S}/${pkg_pro}" + ${QTDIR}/bin/qmake -o "Makefile" "${S}/${pkg_pro}" emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" "${@}" || die } diff --git a/eclass/mythtv-plugins.eclass b/eclass/mythtv-plugins.eclass index 6b0305517b26..6d226fd216a7 100644 --- a/eclass/mythtv-plugins.eclass +++ b/eclass/mythtv-plugins.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.3 2005/06/08 23:17:05 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.4 2005/07/01 15:01:49 caleb Exp $ # # Author: Doug Goldstein <cardoe@gentoo.org # @@ -67,7 +67,7 @@ mythtv-plugins_src_compile() { econf ${myconf} ${MTVCONF} - qmake -o "Makefile" mythplugins.pro || die "qmake failed to run" + ${QTDIR}/bin/qmake -o "Makefile" mythplugins.pro || die "qmake failed to run" emake || die "make failed to compile" } |