From: markus schnalke Date: Fri, 23 Dec 2011 08:00:59 +0000 (+0100) Subject: Be quiet! Only talk if you have something useful to say. X-Git-Tag: mmh-thesis-end~446 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=2676fdf95667cfa0fec45372dbb956c8645c1119 Be quiet! Only talk if you have something useful to say. --- diff --git a/etc/Makefile.in b/etc/Makefile.in index 721cacb..1216177 100644 --- a/etc/Makefile.in +++ b/etc/Makefile.in @@ -93,13 +93,12 @@ install-etc-files: done; \ for path in $$INSTALL_FILES; do \ file=`basename $$path`; \ - echo "Installing $$file..."; \ if [ -f "$(DESTDIR)$(etcdir)/$$file" ]; then \ - if cmp -s "$$path" "$(DESTDIR)$(etcdir)/$$file"; then \ - echo "$(DESTDIR)$(etcdir)/$$file unchanged, skipped"; \ + if cmp -s "$$path" "$(DESTDIR)$(etcdir)/$$file" ; then \ + :; \ else \ $(INSTALL_DATA) "$$path" "$(DESTDIR)$(etcdir)/$$file.dist"; \ - echo "INFO: $(DESTDIR)$(etcdir)/$$file installed with .dist extension"; \ + echo "$(DESTDIR)$(etcdir)/$$file has local modifications; installing with .dist suffix"; \ fi; \ else \ $(INSTALL_DATA) $$path $(DESTDIR)$(etcdir)/$$file; \