diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-02-26 01:11:13 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-02-26 01:11:13 +0000 |
commit | 94447ffa587990bed03f4010b0aa8d4d154d4776 (patch) | |
tree | 882ba8d9ce027b90bc21e06cbc2e9b6d5e25e52c /eclass | |
parent | Stable on x86 wrt bug #211230 (diff) | |
download | historical-94447ffa587990bed03f4010b0aa8d4d154d4776.tar.gz historical-94447ffa587990bed03f4010b0aa8d4d154d4776.tar.bz2 historical-94447ffa587990bed03f4010b0aa8d4d154d4776.zip |
Quote arguments passed to eqmake or it will fail when passing
variables with whitespace on them.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt4.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt4.eclass b/eclass/qt4.eclass index a4c68eeca19a..be14c564dfce 100644 --- a/eclass/qt4.eclass +++ b/eclass/qt4.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.eclass,v 1.35 2008/02/25 17:07:33 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.36 2008/02/26 01:11:13 flameeyes Exp $ # @ECLASS: qt4.eclass # @MAINTAINER: @@ -201,7 +201,7 @@ eqmake4() { QMAKE_LFLAGS_RELEASE="${LDFLAGS}" \ QMAKE_LFLAGS_DEBUG="${LDFLAGS}" \ QMAKE_RPATH= \ - ${@} >> ${LOGFILE} 2>&1 + "${@}" >> ${LOGFILE} 2>&1 local result=$? eend ${result} |