Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[PATCH 2/3] Make 'make -s' print nothing when it does nothing.



---
I omitted the line entirely since there's no easy way to omit it only
for 'make -s'.  The syntax of $(MAKEFLAGS) can take one of two different
forms (it's actually standardized this way ☹) and it didn't seem worth
the trouble to support both.

Cheers,

Daniel


 Src/Makefile.in | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Src/Makefile.in b/Src/Makefile.in
index 0577554f8..0fdbb73d2 100644
--- a/Src/Makefile.in
+++ b/Src/Makefile.in
@@ -94,7 +94,6 @@ zsh.res.o: $(sdir)/zsh.rc $(sdir)/zsh.ico
 stamp-modobjs: modobjs
 	@if cmp -s stamp-modobjs.tmp stamp-modobjs; then \
 	    rm -f stamp-modobjs.tmp; \
-	    echo "\`stamp-modobjs' is up to date."; \
 	else \
 	    mv -f stamp-modobjs.tmp stamp-modobjs; \
 	    echo "Updated \`stamp-modobjs'."; \



Messages sorted by: Reverse Date, Date, Thread, Author