Skip to content
Snippets Groups Projects
Commit e8dc2763 authored by Alexandre Oliva's avatar Alexandre Oliva Committed by Alexandre Oliva
Browse files

* gcc_update (touch_files): Use simpler, yet as portable, syntax.

From-SVN: r42229
parent 3d2999ba
No related branches found
No related tags found
No related merge requests found
2001-05-17 Alexandre Oliva <aoliva@redhat.com>
* gcc_update (touch_files): Use simpler, yet as portable, syntax.
2001-05-14 Loren J. Rittle <ljrittle@acm.org>
* gcc_update (touch_files): Enhance make portability.
......
......@@ -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; true; 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.$$
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment