diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2009-02-05 15:45:55 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2009-02-05 15:45:55 +0000 |
commit | 57c9bccb3b8ffe359aae18d987eb7a7e57daba86 (patch) | |
tree | 7186f09085776931104719f212778694d23a3aee | |
parent | 8c71dc5878ef96ba4c81652777d12fc53a5f403a (diff) | |
download | newlib-57c9bccb3b8ffe359aae18d987eb7a7e57daba86.zip newlib-57c9bccb3b8ffe359aae18d987eb7a7e57daba86.tar.gz newlib-57c9bccb3b8ffe359aae18d987eb7a7e57daba86.tar.bz2 |
* Makefile.tpl (stage_last): Define $r and $s before using
$(RECURSE_FLAGS_TO_PASS).
* Makefile.in: Regenerate
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | Makefile.tpl | 2 |
3 files changed, 14 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2009-02-05 Andreas Schwab <schwab@suse.de> + + * Makefile.tpl (stage_last): Define $r and $s before using + $(RECURSE_FLAGS_TO_PASS). + * Makefile.in: Regenerate + 2009-01-21 Jeff Johnston <jjohnstn@redhat.com> * COPYING.NEWLIB: Add ARM license. @@ -43,13 +49,13 @@ 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu> - * configure.ac: Add double brackets on darwin[912]. - * configure: Regenerate. + * configure.ac: Add double brackets on darwin[912]. + * configure: Regenerate. 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu> - * configure.ac: Expand to darwin10 and later. - * configure: Regenerate. + * configure.ac: Expand to darwin10 and later. + * configure: Regenerate. 2008-12-02 Andreas Schwab <schwab@suse.de> diff --git a/Makefile.in b/Makefile.in index 2df155e..3ca3f26 100644 --- a/Makefile.in +++ b/Makefile.in @@ -54861,6 +54861,8 @@ do-distclean: distclean-stage1 # Provide a GCC build when we're building target libraries. This does # not work as a dependency, just as the minimum necessary to avoid errors. stage_last: + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(MAKE) $(RECURSE_FLAGS_TO_PASS) stage1-bubble # Same as unstage, but not phony and defaulting to stage1-start. We place diff --git a/Makefile.tpl b/Makefile.tpl index f654fb3..acb349f 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1468,6 +1468,8 @@ do-distclean: distclean-stage1 # Provide a GCC build when we're building target libraries. This does # not work as a dependency, just as the minimum necessary to avoid errors. stage_last: + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(MAKE) $(RECURSE_FLAGS_TO_PASS) stage1-bubble # Same as unstage, but not phony and defaulting to stage1-start. We place |