Commit 29a948c8 by Geoffrey Keating Committed by Geoffrey Keating

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

From-SVN: r52462
parent 887fc41a
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> 2002-04-16 Richard Henderson <rth@redhat.com>
* gcc_update: Remove libchill. * gcc_update: Remove libchill.
......
...@@ -114,7 +114,7 @@ touch_files () { ...@@ -114,7 +114,7 @@ touch_files () {
files_and_dependencies | sed 's, ,: ,' >> Makefile.$$ files_and_dependencies | sed 's, ,: ,' >> Makefile.$$
files_and_dependencies | sed 's, .*, \\,' >> Makefile.$$ files_and_dependencies | sed 's, .*, \\,' >> Makefile.$$
echo ':' >> 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 $@...; \' >> Makefile.$$
echo ' echo Touching $@... 1>&2; \' >> Makefile.$$ echo ' echo Touching $@... 1>&2; \' >> Makefile.$$
echo ' touch $@' >> Makefile.$$ echo ' touch $@' >> Makefile.$$
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment