diff options
author | Richard Guenther <rguenther@suse.de> | 2007-01-23 16:37:09 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2007-01-23 16:37:09 +0000 |
commit | 5305be7e843ebbc376a8c591a3b382d103a5ee1e (patch) | |
tree | 5f70719b7af7ee93a93c643d7f80db9037b57ff2 /libada | |
parent | d5dc6badbfe9439f50fb805bc34efc85bb52c6c1 (diff) | |
download | gcc-5305be7e843ebbc376a8c591a3b382d103a5ee1e.tar.gz |
re PR bootstrap/30541 (Top-level should pass GNATBIND, GNATLINK and GNATMAKE variables down)
2007-01-23 Richard Guenther <rguenther@suse.de>
PR bootstrap/30541
* Makefile.def (flags_to_pass): Add GNATBIND and GNATMAKE.
* Makefile.tpl (GNATBIND): Substitute it.
(GNATMAKE): Likewise.
(POSTSTAGE1_FLAGS_TO_PASS): Pass staged GNATBIND instead
of STAGE_PREFIX.
* Makefile.in: Regenerate.
* configure: Regenerate.
config/
* acx.m4 (ACX_PROG_GNAT): Check for gnatmake.
libada/
* Makefile.in (STAGE_PREFIX): Do not define.
(FLAGS_TO_PASS): Do not pass STAGE_PREFIX.
gnattools/
* Makefile.in (STAGE_PREFIX): Do not define.
ada/
* Make-lang.in: Replace invocations of gnatmake with $(GNATMAKE).
(gnatboot2): Pass staged GNATMAKE instead of STAGE_PREFIX.
(gnatboot3): Likewise.
(GNATBIND): Do not define.
* Makefile.in (GNATBIND): Do not define.
From-SVN: r121082
Diffstat (limited to 'libada')
-rw-r--r-- | libada/ChangeLog | 6 | ||||
-rw-r--r-- | libada/Makefile.in | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libada/ChangeLog b/libada/ChangeLog index 50626693c9a..b62e3c31643 100644 --- a/libada/ChangeLog +++ b/libada/ChangeLog @@ -1,3 +1,9 @@ +2007-01-23 Richard Guenther <rguenther@suse.de> + + PR bootstrap/30541 + * Makefile.in (STAGE_PREFIX): Do not define. + (FLAGS_TO_PASS): Do not pass STAGE_PREFIX. + 2006-11-16 Paolo Bonzini <bonzini@gnu.org> PR bootstrap/29802 diff --git a/libada/Makefile.in b/libada/Makefile.in index 07407a4fd2a..1e5f8b5e2fd 100644 --- a/libada/Makefile.in +++ b/libada/Makefile.in @@ -35,7 +35,6 @@ GNATLIBFLAGS= -W -Wall -gnatpg THREAD_KIND=native TRACE=no LDFLAGS= -STAGE_PREFIX= # The tedious process of getting CFLAGS right. CFLAGS=-g @@ -74,7 +73,6 @@ FLAGS_TO_PASS = \ "exeext=$(exeext)" \ "objext=$(objext)" \ "prefix=$(prefix)" \ - "STAGE_PREFIX=$(STAGE_PREFIX)" \ "CC=$(host_cc_for_libada)" \ "GCC_FOR_TARGET=$(CC)" \ "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" |