diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-07-31 14:40:14 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-07-31 14:40:14 +0000 |
commit | 2f7cb4f32326ca5a17dd1a2b2344bd8980a9ad8c (patch) | |
tree | e30092c9c9fe18d38228c45d21548c4f37526b6e /eclass/qt4-r2.eclass | |
parent | Stable on amd64 wrt bug #329891 (diff) | |
download | gentoo-2-2f7cb4f32326ca5a17dd1a2b2344bd8980a9ad8c.tar.gz gentoo-2-2f7cb4f32326ca5a17dd1a2b2344bd8980a9ad8c.tar.bz2 gentoo-2-2f7cb4f32326ca5a17dd1a2b2344bd8980a9ad8c.zip |
Adding -config option to eqmake4. Bug #328457. Thanks to Davide Pesavento for
the patch
Diffstat (limited to 'eclass/qt4-r2.eclass')
-rw-r--r-- | eclass/qt4-r2.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/qt4-r2.eclass b/eclass/qt4-r2.eclass index 4771dbb4d47c..086af3767347 100644 --- a/eclass/qt4-r2.eclass +++ b/eclass/qt4-r2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-r2.eclass,v 1.6 2010/04/15 06:51:08 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-r2.eclass,v 1.7 2010/07/31 14:40:14 hwoarang Exp $ # @ECLASS: qt4-r2.eclass # @MAINTAINER: @@ -244,7 +244,9 @@ eqmake4() { [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= - "${EPREFIX}"/usr/bin/qmake -makefile -nocache \ + "${EPREFIX}"/usr/bin/qmake \ + -makefile -nocache \ + -config ${CONFIG_ADD} \ QTDIR="${EPREFIX}"/usr/$(get_libdir) \ QMAKE="${EPREFIX}"/usr/bin/qmake \ QMAKE_CC=$(tc-getCC) \ |