Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2009-05-27 11:30:42 +0400
committerAlexandre Oliva <aoliva@redhat.com>2009-05-27 11:30:42 +0400
commit5cf384df95b6097afea2a9b1865d977a37a665ff (patch)
treee6c7f2d04baecbdcdfca542b5c8eee757c24b55c /Makefile.in
parent1ccd407d79af9752464339db329bbe2370551e6a (diff)
* 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.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 110f7d696..aa34c89a0 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