diff options
author | Jim Wilson <wilson@redhat.com> | 2004-04-16 07:17:44 +0000 |
---|---|---|
committer | Jim Wilson <wilson@redhat.com> | 2004-04-16 07:17:44 +0000 |
commit | e2c248c18bcfa7ceed603f92bc8085c7e1bd10b0 (patch) | |
tree | c66ed8aaa4d1464e77f41828237c96e7b3e28da5 /Makefile.tpl | |
parent | 4be0ce3219a1611851a33a2a1d60751a72c6f406 (diff) | |
download | cygnal-e2c248c18bcfa7ceed603f92bc8085c7e1bd10b0.tar.gz cygnal-e2c248c18bcfa7ceed603f92bc8085c7e1bd10b0.tar.bz2 cygnal-e2c248c18bcfa7ceed603f92bc8085c7e1bd10b0.zip |
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 e52f7096b..7ae10deab 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; \ |