aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f3ca45bc..e49c5c8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,12 @@
* dfa.c: Sync with GNU grep.
+ Unrelated:
+
+ * configure.ac: Move AM_CONDITIONAL[ENABLE_EXTENSIONS] outside
+ the enclosing if. Thanks to Assaf Gordon <assafgordon@gmail.com>
+ for the report.
+
2016-06-08 Arnold D. Robbins <arnold@skeeve.com>
* symbol.c (lookup): If got Node_val, it's a non-variable
diff --git a/configure.ac b/configure.ac
index 62f79ece..58600f23 100644
--- a/configure.ac
+++ b/configure.ac
@@ -334,8 +334,8 @@ if test "x$enable_extensions" != "xno"; then
AC_MSG_ERROR([extension support requested, but unavailable])
fi
enable_extensions=$extensions_supported
- AM_CONDITIONAL([ENABLE_EXTENSIONS], [test "x$enable_extensions" = "xyes"])
fi
+AM_CONDITIONAL([ENABLE_EXTENSIONS], [test "x$enable_extensions" = "xyes"])
dnl check for how to use getpgrp
dnl have to hardwire it for VMS POSIX. Sigh.