summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-02-26 20:38:51 +0200
committerArnold D. Robbins <arnold@skeeve.com>2014-02-26 20:38:51 +0200
commitdad57e4fdd815c9038267ec0fc7aa593f20b0a05 (patch)
treec1348eeff44335e29ac7ab1eaab8dab000e671af
parent0a66ebd338de385b08e8cf80c39b99f5abc205db (diff)
downloadgawk-dad57e4fdd815c9038267ec0fc7aa593f20b0a05.tar.gz
Fix configure for MirBSD also. Bleah.
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac4
3 files changed, 7 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index a6736b21..3edd067d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-02-26 Arnold D. Robbins <arnold@skeeve.com>
+
+ * configure.ac: Set up do-nothing extension/Makefile on
+ MirBSD also.
+
2014-02-21 Arnold D. Robbins <arnold@skeeve.com>
* dfa.h, dfa.c (parse_bracket_exp): Sync with grep.
diff --git a/configure b/configure
index 6c434883..2b4a193a 100755
--- a/configure
+++ b/configure
@@ -10068,9 +10068,7 @@ if test "x$enable_extensions" != "xno"; then
extensions_supported=no
case $host_os in
- mirbsd*)
- : ;;
- openedition*) # OS/390 z/OS POSIX layer
+ mirbsd* | openedition*) # OS/390 z/OS POSIX layer
cat << \EOF > extension/Makefile
all dist check clean distclean install uninstall distcheck:
@exit 0
diff --git a/configure.ac b/configure.ac
index 19a32c22..98b62168 100644
--- a/configure.ac
+++ b/configure.ac
@@ -290,9 +290,7 @@ if test "x$enable_extensions" != "xno"; then
dnl On MirBSD (and probably other systems), don't even try.
case $host_os in
- mirbsd*)
- : ;;
- openedition*) # OS/390 z/OS POSIX layer
+ mirbsd* | openedition*) # OS/390 z/OS POSIX layer
cat << \EOF > extension/Makefile
all dist check clean distclean install uninstall distcheck:
@exit 0