[PATCH iproute2] Make builds default to quiet mode

2016-05-24 Thread David Ahern
Similar to the Linux kernel and perf add infrastructure to reduce the amount of output tossed to a user during a build. Full build output can be obtained with 'make V=1' Builds go from: make[1]: Leaving directory `/home/dsa/iproute2.git/lib' make[1]: Entering directory

Re: [PATCH iproute2] Make builds default to quiet mode

2016-05-24 Thread Andreas Schwab
David Ahern writes: > @@ -50,7 +54,7 @@ LDLIBS += $(LIBNETLINK) > all: Config > @set -e; \ > for i in $(SUBDIRS); \ > - do $(MAKE) $(MFLAGS) -C $$i; done > + do echo "\n$$i"; $(MAKE) $(MFLAGS) -C $$i; done echo "\n" is not portable. Andreas. --