Thanks. I'll report the problem to libtool...<br><br><div><span class="gmail_quote">On 5/13/06, <b class="gmail_sendername">Derek Atkins</b> <<a href="mailto:warlord@mit.edu">warlord@mit.edu</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
It comes from the libtool package. Indeed it's NOT under revision control,<br>so this patch doesn't help -- we can't patch "libtoolize". You should contact<br>the libtool people and get them to update it upstream.
<br><br>Thank you for this work, but I'm afraid that there just isn't much we can<br>do with your patch at this point.<br><br>-derek<br><br>Quoting Archimedes Submerged <<a href="mailto:archimerged@gmail.com">archimerged@gmail.com
</a>>:<br><br>> On FC4, libtool frequently gives a warning during compilation. I determined<br>> the cause.<br>> It seems that lt_sys_lib_search_path_spec has several /../'s. I can't find<br>> out where that
<br>> value comes from, but the following change will eliminate the problem. I<br>> also don't know<br>> where ltmain.sh came from, since svn says its not under revision control.<br>><br>> --- ltmain.sh~ 2005-11-22 08:18:
02.000000000 -0500<br>> +++ ltmain.sh 2006-05-13 15:52:13.000000000 -0400<br>> @@ -2775,17 +2775,12 @@<br>> *.la)<br>> dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`<br>> test "X$dir" = "X$deplib" && dir="."
<br>> - # We need an absolute path.<br>> - case $dir in<br>> - [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;<br>> - *)<br>> - absdir=`cd "$dir" && pwd`
<br>> - if test -z "$absdir"; then<br>> - $echo "$modename: warning: cannot determine absolute directory<br>> name of \`$dir'" 1>&2<br>> - absdir="$dir"
<br>> - fi<br>> - ;;<br>> - esac<br>> + # We need an absolute path with no /../'s.<br>> + absdir=`cd "$dir" && pwd`<br>> + if test -z "$absdir"; then
<br>> + $echo "$modename: warning: cannot determine absolute directory<br>> name of \`$dir'" 1>&2<br>> + absdir="$dir"<br>> + fi<br>> if grep "^installed=no" $deplib > /dev/null; then
<br>> path="$absdir/$objdir"<br>> else<br>><br><br><br><br>--<br> Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory<br> Member, MIT Student Information Processing Board (SIPB)
<br> URL: <a href="http://web.mit.edu/warlord/">http://web.mit.edu/warlord/</a> PP-ASEL-IA N1NWH<br> <a href="mailto:warlord@MIT.EDU">warlord@MIT.EDU</a> PGP key available<br><br>
</blockquote></div><br>