From: H.J. Lu Date: Tue, 16 Jul 2002 22:03:34 +0000 (+0000) Subject: gcc_update (touch_files): Pass -s to ${MAKE}. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=554b81110446a7af56af9417bd30437024443564;p=gcc.git gcc_update (touch_files): Pass -s to ${MAKE}. 2002-07-16 H.J. Lu * gcc_update (touch_files): Pass -s to ${MAKE}. From-SVN: r55497 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 14da30497f3..1509bdbd33b 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2002-07-16 H.J. Lu + + * gcc_update (touch_files): Pass -s to ${MAKE}. + 2002-06-26 Zack Weinberg * texi2pod.pl: Correct handling of the internal R<> sequence. diff --git a/contrib/gcc_update b/contrib/gcc_update index e3486e3e957..06a7852155c 100755 --- a/contrib/gcc_update +++ b/contrib/gcc_update @@ -123,7 +123,7 @@ touch_files () { echo ' echo Touching $@... 1>&2; \' >> Makefile.$$ echo ' touch $@' >> Makefile.$$ files_and_dependencies | sed 's,[^ ]* ,,;s,$, :,' >> Makefile.$$ - while ${MAKE-make} -f Makefile.$$ all | grep . > /dev/null; do + while ${MAKE-make} -s -f Makefile.$$ all | grep . > /dev/null; do sleep 1 done 2>&1 rm -f Makefile.$$