Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eglib
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2013-01-09 16:16:42 +0400
committerZoltan Varga <vargaz@gmail.com>2013-01-09 16:16:42 +0400
commit2cde8a7269455f8ef72a00743de0cdaf00795e08 (patch)
tree097540e0b8b3d314e2063243ef378dc2af166e14 /eglib
parent7fbe0a0febceee7d4a4700b4aa301de97e0a67a1 (diff)
Fix the check for autoheader in eglib/autogen.sh and libgc/autogen.sh too.
Diffstat (limited to 'eglib')
-rwxr-xr-xeglib/autogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/eglib/autogen.sh b/eglib/autogen.sh
index ac2e7679021..66f980a9b18 100755
--- a/eglib/autogen.sh
+++ b/eglib/autogen.sh
@@ -113,7 +113,7 @@ aclocal -I m4 $ACLOCAL_FLAGS || {
exit 1
}
-if grep "^AM_CONFIG_HEADER" configure.ac >/dev/null; then
+if grep "^AC_CONFIG_HEADERS" configure.ac >/dev/null; then
echo "Running autoheader..."
autoheader || { echo "**Error**: autoheader failed."; exit 1; }
fi