diff options
author | Maciej Mrozowski <reavertm@gentoo.org> | 2010-10-03 19:30:22 +0000 |
---|---|---|
committer | Maciej Mrozowski <reavertm@gentoo.org> | 2010-10-03 19:30:22 +0000 |
commit | c835cc46bc4a7903f8a7ed2d2108c385be63147e (patch) | |
tree | 71201d43ff17391c996a96d6acb708342c940fd9 /eclass | |
parent | Use real tarball instead of autogenerated file (diff) | |
download | historical-c835cc46bc4a7903f8a7ed2d2108c385be63147e.tar.gz historical-c835cc46bc4a7903f8a7ed2d2108c385be63147e.tar.bz2 historical-c835cc46bc4a7903f8a7ed2d2108c385be63147e.zip |
Fix myeconfargs quoting, bug 339227. Thanks to Martin von Gagern for reporting.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index e7d2d2162692..84fc9b4f606d 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.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/autotools-utils.eclass,v 1.4 2010/09/12 21:29:51 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.5 2010/10/03 19:30:22 reavertm Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -206,7 +206,7 @@ autotools-utils_src_configure() { fi # Append user args - econfargs+=(${myeconfargs[@]}) + econfargs+=("${myeconfargs[@]}") _check_build_dir mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |