diff options
author | Jim Wilson <wilson@tuliptree.org> | 2004-04-16 07:17:44 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 2004-04-16 07:17:44 +0000 |
commit | 51860f0543dbd89b4131b6bb75c2984526eb71a4 (patch) | |
tree | 1219bad6b94af7df29659224864106b923e3f00f /Makefile.tpl | |
parent | fdc860a37ed026dce4455748cda5cf50ff680ec7 (diff) | |
download | fsf-binutils-gdb-51860f0543dbd89b4131b6bb75c2984526eb71a4.zip fsf-binutils-gdb-51860f0543dbd89b4131b6bb75c2984526eb71a4.tar.gz fsf-binutils-gdb-51860f0543dbd89b4131b6bb75c2984526eb71a4.tar.bz2 |
Fix LDFLAGS related configure errors.
* Makefile.tpl (configure-[+module+], configure-gcc,
configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
Set and export LDFLAGS.
* Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index e52f709..7ae10de 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -781,6 +781,7 @@ configure-[+module+]: CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \ DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \ LD="$(LD)"; export LD; \ + LDFLAGS="$(LDFLAGS)"; export LDFLAGS; \ NM="$(NM)"; export NM; \ RANLIB="$(RANLIB)"; export RANLIB; \ WINDRES="$(WINDRES)"; export WINDRES; \ @@ -1076,6 +1077,7 @@ configure-gcc: CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \ DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \ LD="$(LD)"; export LD; \ + LDFLAGS="$(LDFLAGS)"; export LDFLAGS; \ NM="$(NM)"; export NM; \ RANLIB="$(RANLIB)"; export RANLIB; \ WINDRES="$(WINDRES)"; export WINDRES; \ @@ -1335,6 +1337,7 @@ configure-stage1-gcc: CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \ DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \ LD="$(LD)"; export LD; \ + LDFLAGS="$(LDFLAGS)"; export LDFLAGS; \ NM="$(NM)"; export NM; \ RANLIB="$(RANLIB)"; export RANLIB; \ WINDRES="$(WINDRES)"; export WINDRES; \ @@ -1405,6 +1408,7 @@ configure-stage2-gcc: all-stage1-gcc AS="$(AS)"; export AS; \ DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \ LD="$(LD)"; export LD; \ + LDFLAGS="$(LDFLAGS)"; export LDFLAGS; \ NM="$(NM)"; export NM; \ RANLIB="$(RANLIB)"; export RANLIB; \ WINDRES="$(WINDRES)"; export WINDRES; \ @@ -1477,6 +1481,7 @@ configure-stage3-gcc: all-stage2-gcc AS="$(AS)"; export AS; \ DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \ LD="$(LD)"; export LD; \ + LDFLAGS="$(LDFLAGS)"; export LDFLAGS; \ NM="$(NM)"; export NM; \ RANLIB="$(RANLIB)"; export RANLIB; \ WINDRES="$(WINDRES)"; export WINDRES; \ |