diff options
author | H.J. Lu <hjl@gnu.org> | 2002-07-16 22:03:34 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2002-07-16 15:03:34 -0700 |
commit | 554b81110446a7af56af9417bd30437024443564 (patch) | |
tree | fbd07db83d6eea4c6a15aa02ab58712a4d75eb89 /contrib | |
parent | 00e0a9e83de7e15ab213b09745c3bbd433516e11 (diff) | |
download | gcc-554b81110446a7af56af9417bd30437024443564.zip gcc-554b81110446a7af56af9417bd30437024443564.tar.gz gcc-554b81110446a7af56af9417bd30437024443564.tar.bz2 |
gcc_update (touch_files): Pass -s to ${MAKE}.
2002-07-16 H.J. Lu <hjl@gnu.org>
* gcc_update (touch_files): Pass -s to ${MAKE}.
From-SVN: r55497
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/gcc_update | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 14da304..1509bdb 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2002-07-16 H.J. Lu <hjl@gnu.org> + + * gcc_update (touch_files): Pass -s to ${MAKE}. + 2002-06-26 Zack Weinberg <zack@codesourcery.com> * texi2pod.pl: Correct handling of the internal R<> sequence. diff --git a/contrib/gcc_update b/contrib/gcc_update index e3486e3..06a7852 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.$$ |