From: Loren J. Rittle Date: Tue, 15 May 2001 04:58:07 +0000 (+0000) Subject: * gcc_update (touch_files): Enhance make portability. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af22667e53c33cf76ca6a5d822875f384c929719;p=gcc.git * gcc_update (touch_files): Enhance make portability. From-SVN: r42100 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index edd26aaaae5..6854e5745a5 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2001-05-14 Loren J. Rittle + + * gcc_update (touch_files): Enhance make portability. + 2001-05-14 Alexandre Oliva * gcc_update (touch_files): Use a Makefile to touch files. diff --git a/contrib/gcc_update b/contrib/gcc_update index 5960e373944..3db162421a2 100755 --- a/contrib/gcc_update +++ b/contrib/gcc_update @@ -108,7 +108,7 @@ touch_files () { files_and_dependencies | sed 's, ,: ,' >> Makefile.$$ files_and_dependencies | sed 's, .*, \\,' >> Makefile.$$ echo ':' >> Makefile.$$ - echo ' @for f in $?; do test ! -f $$f && exit 0; done; \' >> Makefile.$$ + echo ' @for f in $?; do test ! -f $$f && exit 0; true; done; \' >> Makefile.$$ echo ' echo Touching $@...; \' >> Makefile.$$ echo ' echo Touching $@... 1>&2; \' >> Makefile.$$ echo ' touch $@' >> Makefile.$$