diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-03-17 20:05:00 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-03-17 20:05:00 +0200 |
commit | cc4a81433f96f0c93b5ab2c16673aea9ca2084ea (patch) | |
tree | 0e85da3c9c8e2309c611c0921ba65d558a16b812 | |
parent | 24fc32d8f0038a18562cd269e824928e5cd4cb9d (diff) | |
download | egawk-cc4a81433f96f0c93b5ab2c16673aea9ca2084ea.tar.gz egawk-cc4a81433f96f0c93b5ab2c16673aea9ca2084ea.tar.bz2 egawk-cc4a81433f96f0c93b5ab2c16673aea9ca2084ea.zip |
Fix test for ZOS_FAIL.
-rwxr-xr-x | ChangeLog | 4 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2019-03-17 Arnold D. Robbins <arnold@skeeve.com> + + * configure.ac: Fix test for ZOS_FAIL. + 2019-03-15 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (pc/Makefile.tst): Yet another fix for out- @@ -5801,7 +5801,7 @@ rm -f conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: result: $use_ebcdic" >&5 $as_echo "$use_ebcdic" >&6; } -if test "$use_ebcdic" = yes ] +if test "$use_ebcdic" = yes then ZOS_FAIL='; echo Expect $@ to fail on z/OS.' fi diff --git a/configure.ac b/configure.ac index 50a985bb..0c36c704 100644 --- a/configure.ac +++ b/configure.ac @@ -144,7 +144,7 @@ gnu_gawk_in_ebcdic use_ebcdic=yes], [use_ebcdic=no]) AC_MSG_RESULT([$use_ebcdic]) -if test "$use_ebcdic" = yes ] +if test "$use_ebcdic" = yes then ZOS_FAIL='; echo Expect $@ to fail on z/OS.' fi |