diff options
-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 |