diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-04-10 02:57:54 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-04-10 02:57:54 +0000 |
commit | 64a3fd2bc5d84494a4aba044dc73ece4ef82dcd5 (patch) | |
tree | a7c125c0612d840261132ac5ba8bef6cd24c7d68 | |
parent | c0562a02c345c3eb7d9a26b85bef454355023ba3 (diff) | |
download | samba-64a3fd2bc5d84494a4aba044dc73ece4ef82dcd5.tar.gz samba-64a3fd2bc5d84494a4aba044dc73ece4ef82dcd5.tar.xz samba-64a3fd2bc5d84494a4aba044dc73ece4ef82dcd5.zip |
don't echo warning messages twice
-rw-r--r-- | source/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Makefile.in b/source/Makefile.in index 0fe8921eeb2..1d5b9509365 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -584,10 +584,10 @@ AUTOHEADER=@AUTOHEADER@ # when configure.in is updated, reconfigure $(srcdir)/configure: @MAINT@ $(srcdir)/configure.in $(srcdir)/aclocal.m4 - echo "WARNING: you need to rerun configure" + @echo "WARNING: you need to rerun configure" config.status: $(srcdir)/configure - echo "WARNING: you need to run ./config.status --recheck" + @echo "WARNING: you need to run ./config.status --recheck" Makefile: $(srcdir)/Makefile.in config.status \ include/stamp-h # just to ensure that config.h is up-to-date |