Hi all,

There is an error in the libtool package which is still in the 1.4.2
version. The problem occurs around line 4356 of the ltmain.sh file:


          if test "$fast_install" = no && test -n "$relink_command"; then
            if test "$finalize" = yes && test -z "$run"; then
              tmpdir="/tmp"
              test -n "$TMPDIR" && tmpdir="$TMPDIR"
              tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null` 
              if test $? = 0 ; then :
              else
                tmpdir="$tmpdir/libtool-$$"
              fi

Notice that if the "mktemp" line were to fail, then "tmpdir" would have a
null value in it...causing the "tmpdir" variable in the else part of the
if to be set to "/libtool-$$", which will be unwritable for most everyone
building/installing things with libtool.

I'd offer up a fix, but I haven't signed a waver to submit code to the
libtool software...

It should be an easy fix, though..

-- 
|| Bill Wendling                        [EMAIL PROTECTED]
|| Coding Simian

_______________________________________________
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool

Reply via email to