* gcc_update (touch_files): Don't have empty for loop.

From-SVN: r52462
This commit is contained in:
Geoffrey Keating 2002-04-18 10:09:10 +00:00 committed by Geoffrey Keating
parent 887fc41aef
commit 29a948c850
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-04-18 Geoffrey Keating <geoffk@redhat.com>
* gcc_update (touch_files): Don't have empty for loop.
2002-04-16 Richard Henderson <rth@redhat.com>
* gcc_update: Remove libchill.

View File

@ -114,7 +114,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; done; \' >> Makefile.$$
echo ' echo Touching $@...; \' >> Makefile.$$
echo ' echo Touching $@... 1>&2; \' >> Makefile.$$
echo ' touch $@' >> Makefile.$$