diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2009-05-27 07:30:42 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2009-05-27 07:30:42 +0000 |
commit | 07fc31c9c913c27ac64af66c32689db4a63827e2 (patch) | |
tree | 38957877e117465b95184ea4a57aaa6a8e729dbe /Makefile.in | |
parent | 2f3565a392130b00755a9dda411f9ac7d0255686 (diff) | |
download | binutils-gdb-07fc31c9c913c27ac64af66c32689db4a63827e2.tar.gz |
* Makefile.tpl (all): Avoid harmless warning in make all when
gcc-bootstrap is enabled but stage_last does not exist.
* Makefile.in: Rebuilt.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 110f7d69659..aa34c89a040 100644 --- a/Makefile.in +++ b/Makefile.in @@ -855,7 +855,7 @@ all: s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ @if gcc-bootstrap if [ -f stage_last ]; then \ - TFLAGS="$(STAGE$(shell sed s,^stage,, stage_last)_TFLAGS)"; \ + TFLAGS="$(STAGE$(shell test ! -f stage_last || sed s,^stage,, stage_last)_TFLAGS)"; \ $(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target; \ else \ @endif gcc-bootstrap |