summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2012-01-19 21:49:38 +0000
committerMichał Górny <mgorny@gentoo.org>2012-01-19 21:49:38 +0000
commit33e0194d5d3ae3abb6ecbd3a8ac26320608396ba (patch)
tree16e5e797aa8496b14904c5640b1fd4a1cd22bdb0 /eclass
parentarm stable (security bug 399347) (diff)
downloadhistorical-33e0194d5d3ae3abb6ecbd3a8ac26320608396ba.tar.gz
historical-33e0194d5d3ae3abb6ecbd3a8ac26320608396ba.tar.bz2
historical-33e0194d5d3ae3abb6ecbd3a8ac26320608396ba.zip
Add AM_CONFIG_HEADER check (for pixman autoreconf).
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/autotools-utils.eclass5
2 files changed, 7 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index e7719e2a697b..b20222bebc2d 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.97 2012/01/19 16:53:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.98 2012/01/19 21:49:38 mgorny Exp $
+
+ 19 Jan 2012; Michał Górny <mgorny@gentoo.org> autotools-utils.eclass:
+ Add AM_CONFIG_HEADER check (for pixman autoreconf).
19 Jan 2012; Michał Górny <mgorny@gentoo.org> git-2.eclass:
Strip .git from storedir; wrt bug #386845.
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