diff options
-rw-r--r-- | pc/ChangeLog | 5 | ||||
-rw-r--r-- | pc/Makefile.tst | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 2276529b..c1fa0924 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,8 @@ +2018-01-21 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.tst (pty2): Sync against test/Makefile.in. + Really for real this time. + 2018-01-20 Arnold D. Robbins <arnold@skeeve.com> * Makefile.tst: Sync against test/Makefile.in. diff --git a/pc/Makefile.tst b/pc/Makefile.tst index 3e5bacba..c6597b6b 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -1370,7 +1370,7 @@ pty2: @echo Expect $@ to fail with DJGPP and MinGW. @-case `uname` in \ *[Oo][Ss]/390*) : ;; \ - *) AWKPATH="$(srcdir)" $(AWK) -f $@.awk | od -c >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ + *) AWKPATH="$(srcdir)" $(AWK) -f $@.awk | od -c | $(AWK) '{ $$1 = $$1 ; print }' >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ $(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ;; \ esac rscompat: |