diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-05-16 20:31:47 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-05-16 20:31:47 +0300 |
commit | ac950a04867fce7784680ba76d654d910e88a8cd (patch) | |
tree | 54ce30c9364e458e6d94e3d3543f5a3ca94269a6 | |
parent | 67abdd7a54c00fae450a0f0964a9c9615a8a50c5 (diff) | |
download | egawk-ac950a04867fce7784680ba76d654d910e88a8cd.tar.gz egawk-ac950a04867fce7784680ba76d654d910e88a8cd.tar.bz2 egawk-ac950a04867fce7784680ba76d654d910e88a8cd.zip |
Minor and hopefully last fix to jarebug test.
-rw-r--r-- | test/ChangeLog | 4 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 97065a2d..70dacf48 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2012-05-16 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (jarebug): Remove leading `-' from $(CMP) line. + 2012-05-14 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (jarebug): Move to charset tests. Adjust to check diff --git a/test/Makefile.am b/test/Makefile.am index 24255b7e..5102d405 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1459,7 +1459,7 @@ jarebug:: @if locale -a | grep ja_JP.EUC-JP > /dev/null ; then \ GAWKLOCALE=ja_JP.EUC-JP ; export GAWKLOCALE ; \ $(AWK) -f $(srcdir)/$@.awk $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >> _$@ ; \ - -$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ ; \ + $(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ ; \ fi diff --git a/test/Makefile.in b/test/Makefile.in index 709009e8..4c368127 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1837,7 +1837,7 @@ jarebug:: @if locale -a | grep ja_JP.EUC-JP > /dev/null ; then \ GAWKLOCALE=ja_JP.EUC-JP ; export GAWKLOCALE ; \ $(AWK) -f $(srcdir)/$@.awk $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >> _$@ ; \ - -$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ ; \ + $(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ ; \ fi Gt-dummy: # file Maketests, generated from Makefile.am by the Gentests program |