diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-04-24 03:15:43 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-04-24 03:15:43 +0000 |
commit | a3a3dbc23efa9ac73d58526fd333ca7b800d20aa (patch) | |
tree | f397cdb3af284d312723d1f08ef5fd0b87a5428c /eclass | |
parent | gentoolkit-0.#2.4_rc4 version bump. This fixes bugs #211706, #211716, (diff) | |
download | gentoo-2-a3a3dbc23efa9ac73d58526fd333ca7b800d20aa.tar.gz gentoo-2-a3a3dbc23efa9ac73d58526fd333ca7b800d20aa.tar.bz2 gentoo-2-a3a3dbc23efa9ac73d58526fd333ca7b800d20aa.zip |
expand aclocal flags as it may be shell code #219029
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 3 |
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 |