* Makefile.tpl (all): Avoid harmless warning in make all when
gcc-bootstrap is enabled but stage_last does not exist. * Makefile.in: Rebuilt.
This commit is contained in:
parent
1ccd407d79
commit
5cf384df95
|
@ -1,3 +1,9 @@
|
|||
2009-05-27 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* Makefile.tpl (all): Avoid harmless warning in make all when
|
||||
gcc-bootstrap is enabled but stage_last does not exist.
|
||||
* Makefile.in: Rebuilt.
|
||||
|
||||
2009-05-25 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* setup.com: Complete the file with configuration and build.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue