diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-01-19 21:49:38 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-01-19 21:49:38 +0000 |
commit | fc7cdbd03a0d05c62017d02a89ea529fad300656 (patch) | |
tree | 3f6feddf3601541bbbbc0ce6ed2775c03d2a2c29 /eclass/autotools-utils.eclass | |
parent | arm stable (security bug 399347) (diff) | |
download | gentoo-2-fc7cdbd03a0d05c62017d02a89ea529fad300656.tar.gz gentoo-2-fc7cdbd03a0d05c62017d02a89ea529fad300656.tar.bz2 gentoo-2-fc7cdbd03a0d05c62017d02a89ea529fad300656.zip |
Add AM_CONFIG_HEADER check (for pixman autoreconf).
Diffstat (limited to 'eclass/autotools-utils.eclass')
-rw-r--r-- | eclass/autotools-utils.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index 4f54814da355..e56e5217bff1 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.43 2012/01/15 20:03:50 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.44 2012/01/19 21:49:38 mgorny Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -284,7 +284,8 @@ autotools-utils_autoreconf() { local x # Add a few additional variants as we don't get expansions. - [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" AC_CONFIG_HEADER + [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" \ + AC_CONFIG_HEADER AM_CONFIG_HEADER for x; do grep -h "^${x}" configure.{ac,in} 2>/dev/null |