diff options
author | Andreas Schwab <schwab@gcc.gnu.org> | 2009-02-05 15:29:52 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2009-02-05 15:29:52 +0000 |
commit | ee04b57491958360b550bbb8047f85940ce28541 (patch) | |
tree | 3728c548eaa3f5f6a2d00a893f99576f5b032396 /Makefile.tpl | |
parent | 5b21d7b23080cbc1972e160dff2c1f72750380a9 (diff) | |
download | gcc-ee04b57491958360b550bbb8047f85940ce28541.tar.gz |
Makefile.tpl (stage_last): Define $r and $s before using $(RECURSE_FLAGS_TO_PASS).
* Makefile.tpl (stage_last): Define $r and $s before using
$(RECURSE_FLAGS_TO_PASS).
* Makefile.in: Regenerate
From-SVN: r143967
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index f654fb3df56..acb349ff742 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 |