summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-04-24 03:15:43 +0000
committerMike Frysinger <vapier@gentoo.org>2008-04-24 03:15:43 +0000
commit086cae4ce6668dc15e22427e381b91caf82bc000 (patch)
tree10aa669aae60f100aabce6f915720c7999b72d52 /eclass
parentgentoolkit-0.#2.4_rc4 version bump. This fixes bugs #211706, #211716, (diff)
downloadhistorical-086cae4ce6668dc15e22427e381b91caf82bc000.tar.gz
historical-086cae4ce6668dc15e22427e381b91caf82bc000.tar.bz2
historical-086cae4ce6668dc15e22427e381b91caf82bc000.zip
expand aclocal flags as it may be shell code #219029
Diffstat (limited to 'eclass')
-rw-r--r--eclass/autotools.eclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
index 7d94588978cd..1f3fd3c51cc7 100644
--- a/eclass/autotools.eclass
+++ b/eclass/autotools.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.74 2008/04/22 22:38:22 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.75 2008/04/24 03:15:43 vapier Exp $
#
# Maintainer: base-system@gentoo.org
#
@@ -121,6 +121,7 @@ eaclocal() {
for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do
[[ -e ${amflags_file} ]] || continue
aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file})
+ eval aclocal_opts=\"${aclocal_opts}\"
break
done