diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-07-30 21:14:57 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-07-30 21:14:57 +0300 |
commit | 7bc08ecbc5d97f743b4af5df9d66f67ac9dcefdf (patch) | |
tree | 810278bb527a02cc6ee06be5e47b5ec789c03fdf | |
parent | b8bdfa1429fef5f936e09733fb1807d700413656 (diff) | |
parent | aa45176cc89b64dad4affcaaa00ea36ca871d1d0 (diff) | |
download | egawk-7bc08ecbc5d97f743b4af5df9d66f67ac9dcefdf.tar.gz egawk-7bc08ecbc5d97f743b4af5df9d66f67ac9dcefdf.tar.bz2 egawk-7bc08ecbc5d97f743b4af5df9d66f67ac9dcefdf.zip |
Merge branch 'master' into feature/fix-comments
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index ca0370d0..7b38cd82 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2017-07-30 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (mprintf5): Put an @ on the echo statement. + Thanks to Hermann Peifer for the report. + 2017-07-28 Arnold D. Robbins <arnold@skeeve.com> * inplace1.ok, inplace2.ok, inplace3.ok: Update after diff --git a/test/Makefile.am b/test/Makefile.am index b407ee8b..fe3efc91 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1910,7 +1910,7 @@ mbprintf4:: @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ mbprintf5:: - echo $@ + @echo $@ @case `uname` in \ CYGWIN*) echo this test fails on cygwin --- skipping $@ ;; \ *) \ diff --git a/test/Makefile.in b/test/Makefile.in index 0b9dfe3d..934616ae 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2350,7 +2350,7 @@ mbprintf4:: @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ mbprintf5:: - echo $@ + @echo $@ @case `uname` in \ CYGWIN*) echo this test fails on cygwin --- skipping $@ ;; \ *) \ |