diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-27 07:29:30 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-27 07:29:30 +0000 |
commit | a36217d3cbece6032ff946985affaa40e27d109a (patch) | |
tree | b53ca16c766b4102d05bb2e22fc536e3ba5b1e42 /Makefile.in | |
parent | 452bfb8baf4e6fa609d722d451bbf31fcfc43de0 (diff) | |
download | gcc-a36217d3cbece6032ff946985affaa40e27d109a.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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147900 138bc75d-0d04-0410-961f-82ee72b054a4
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 65835c59580..bac64461b33 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 |