diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-06 21:58:58 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-06 21:58:58 +0200 |
commit | fc2a0c145fdb78834c69c375144bfebe976cf2e8 (patch) | |
tree | 889d6370c7d21bcd8dc4bc0db995956a32c397c2 | |
parent | c7c362089112180c0d66f9342be4f03704adeb87 (diff) | |
download | egawk-fc2a0c145fdb78834c69c375144bfebe976cf2e8.tar.gz egawk-fc2a0c145fdb78834c69c375144bfebe976cf2e8.tar.bz2 egawk-fc2a0c145fdb78834c69c375144bfebe976cf2e8.zip |
Fix a problem in improving test/Makefile.
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 873d9844..aae30518 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1063,7 +1063,7 @@ tweakfld:: mmap8k:: @echo $@ @$(AWK) '{ print }' $(srcdir)/mmap8k.in >_$@ - @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ + @-$(CMP) $(srcdir)/mmap8k.in _$@ && rm -f _$@ tradanch:: @echo $@ diff --git a/test/Makefile.in b/test/Makefile.in index 5dbb0e5c..800c55d8 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1413,7 +1413,7 @@ tweakfld:: mmap8k:: @echo $@ @$(AWK) '{ print }' $(srcdir)/mmap8k.in >_$@ - @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ + @-$(CMP) $(srcdir)/mmap8k.in _$@ && rm -f _$@ tradanch:: @echo $@ |