1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

ltmain bugfix for dumb linkers

This commit is contained in:
Tim Pierce 1997-07-02 17:32:52 +00:00
parent a01e24ecde
commit ec918b9b2e
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Wed Jul 2 12:28:40 1997 Tim Pierce <twp@twp.tezcat.com>
* ltmain.sh: Remove any trailing colon on $shlibpath_var
(i.e. LD_LIBRARY_PATH) for braindamaged linkers that choke on it.
Patch sent to bug-libtool.
Sat Jun 28 16:13:43 1997 Tim Pierce <twp@twp.tezcat.com>
* configure.in: Add alloca.o explicitly to LIBOBJS (thanks Eric

View file

@ -1008,6 +1008,9 @@ EOF
# Add our own library path to $shlibpath_var
$shlibpath_var="$temp_rpath\$$shlibpath_var"
# Some systems cannot cope with colon-terminated $shlibpath_var
$shlibpath_var=\`echo \$$shlibpath_var | sed -e 's/:\$//'\`
export $shlibpath_var
EOF
fi
@ -1188,7 +1191,7 @@ EOF
# Not a directory, so check to see that there is only one file specified.
set dummy $files
if test $# -gt 2; then
if $# -gt 2; then
echo "$progname: \`$dest' is not a directory" 1>&2
echo "$help" 1>&2
exit 1