diff options
-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 4fd92d10..55ec26b6 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 $@ ;; \ *) \ |