From: Alan T. DeKok Date: Wed, 7 Nov 2012 15:43:34 +0000 (-0500) Subject: Don't print out commands we run X-Git-Tag: release_3_0_0_beta1~1590 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3584d2f32da35a308a6f729d793a9dff46ff25e4;p=thirdparty%2Ffreeradius-server.git Don't print out commands we run --- diff --git a/Makefile b/Makefile index d4a730e06df..5d2e7f726d8 100644 --- a/Makefile +++ b/Makefile @@ -122,16 +122,16 @@ $(SUBDIRS): @$(MAKE) $(MFLAGS) -C $@ $(WHAT_TO_MAKE) distclean: clean - rm -f config.cache config.log config.status libtool \ + @rm -f config.cache config.log config.status libtool \ src/include/radpaths.h src/include/stamp-h \ libltdl/config.log libltdl/config.status \ libltdl/libtool - -find . ! -name configure.in -name \*.in -print | \ + @-find . ! -name configure.in -name \*.in -print | \ sed 's/\.in$$//' | \ while read file; do rm -f $$file; done - -find src/modules -name config.mak | \ + @-find src/modules -name config.mak | \ while read file; do rm -f $$file; done - -find src/modules -name config.h | \ + @-find src/modules -name config.h | \ while read file; do rm -f $$file; done ######################################################################