diff options
author | 2006-02-11 16:31:53 +0000 | |
---|---|---|
committer | 2006-02-11 16:31:53 +0000 | |
commit | e7d2689e56ffc72b1b18812880aa6888d17180a9 (patch) | |
tree | 1ffc5c29d9d6b65be624b94ae23b14707c5163b1 /eclass | |
parent | Removing apollo from portage - it's unmaintained, been 4 years since a releas... (diff) | |
download | gentoo-2-e7d2689e56ffc72b1b18812880aa6888d17180a9.tar.gz gentoo-2-e7d2689e56ffc72b1b18812880aa6888d17180a9.tar.bz2 gentoo-2-e7d2689e56ffc72b1b18812880aa6888d17180a9.zip |
Ensure mythtv plugins all call the correct qmake
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mythtv-plugins.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mythtv-plugins.eclass b/eclass/mythtv-plugins.eclass index ce3ebb555669..78f469ad1127 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.9 2005/08/23 14:55:11 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.10 2006/02/11 16:31:53 caleb Exp $ # # Author: Doug Goldstein <cardoe@gentoo.org # @@ -65,7 +65,7 @@ mythtv-plugins_src_compile() { econf ${myconf} ${MTVCONF} - ${QTDIR}/bin/qmake -o "Makefile" mythplugins.pro || die "qmake failed to run" + ${QTDIR}/bin/qmake QMAKE=${QTDIR}/bin/qmake -o "Makefile" mythplugins.pro || die "qmake failed to run" emake || die "make failed to compile" } |