diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2009-05-27 07:30:41 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2009-05-27 07:30:41 +0000 |
commit | c912928872cf4014fb5a223607144bbd5b57db79 (patch) | |
tree | e108107381b3cda1371592b592034bd2925da9a8 /Makefile.tpl | |
parent | 6386feea553f2ddbc0db53a16ea0a1fe854ec84b (diff) | |
download | gdb-c912928872cf4014fb5a223607144bbd5b57db79.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.tpl')
-rw-r--r-- | Makefile.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index bc7c415f090..e683ebcfb66 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -621,7 +621,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 |