From: Ted Lemon Date: Tue, 20 Jun 2000 20:25:30 +0000 (+0000) Subject: Make links build silent X-Git-Tag: V3-BETA-2-PATCH-1~135 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5735b8aea51f1bd7ee7dd0e63169978a6e84987;p=thirdparty%2Fdhcp.git Make links build silent --- diff --git a/client/Makefile.dist b/client/Makefile.dist index c0166e87e..18322410d 100644 --- a/client/Makefile.dist +++ b/client/Makefile.dist @@ -76,7 +76,7 @@ distclean: realclean -rm -f Makefile links: - for foo in $(SRCS) $(MAN); do \ + @for foo in $(SRCS) $(MAN); do \ if [ ! -b $$foo ]; then \ rm -f $$foo; \ fi; \ diff --git a/common/Makefile.dist b/common/Makefile.dist index d809e6ade..d1dfdbdd4 100644 --- a/common/Makefile.dist +++ b/common/Makefile.dist @@ -71,7 +71,7 @@ distclean: realclean -rm -f Makefile links: - for foo in $(SRC) $(MAN); do \ + @for foo in $(SRC) $(MAN); do \ if [ ! -b $$foo ]; then \ rm -f $$foo; \ fi; \ diff --git a/dhcpctl/Makefile.dist b/dhcpctl/Makefile.dist index 02e3a8339..0d23a4583 100644 --- a/dhcpctl/Makefile.dist +++ b/dhcpctl/Makefile.dist @@ -78,7 +78,7 @@ distclean: realclean -rm -f Makefile links: - for foo in $(SRC) $(MAN) test.c cltest.c $(HDRS); do \ + @for foo in $(SRC) $(MAN) test.c cltest.c $(HDRS); do \ if [ ! -b $$foo ]; then \ rm -f $$foo; \ fi; \