summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorNuno Araujo <nuno.araujo@russo79.com>2013-01-15 17:47:22 +0100
committerDavid Zeuthen <zeuthen@gmail.com>2013-04-10 07:21:07 -0700
commit7caa88f1eb8d01ab935f1d1e34a0db20f554448b (patch)
tree1d484556064bf154c4d64468c72e03db16444595 /autogen.sh
parent54e212876aa87ef98866ee217db02f5e42525b24 (diff)
downloadpolkit-7caa88f1eb8d01ab935f1d1e34a0db20f554448b.tar.gz
Fix the build with automake 1.13
In Automake 1.13, the long-deprecated macro AM_CONFIG_HEADER (deprecated since 2002) has been removed in favour of AC_CONFIG_HEADERS. Signed-off-by: David Zeuthen <zeuthen@gmail.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index d08b00a..3407ae0 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -99,7 +99,7 @@ esac
fi
echo "Running aclocal $aclocalinclude ..."
aclocal $aclocalinclude
- if grep "^AM_CONFIG_HEADER" configure.ac >/dev/null; then
+ if grep "^AC_CONFIG_HEADERS" configure.ac >/dev/null; then
echo "Running autoheader..."
autoheader
fi