On FC4, libtool frequently gives a warning during compilation.&nbsp; I determined the cause.<br>It seems that lt_sys_lib_search_path_spec has several /../'s.&nbsp; I can't find out where that<br>value comes from, but the following change will eliminate the problem.&nbsp; I also don't know
<br>where ltmain.sh came from, since svn says its not under revision control.<br><br>--- ltmain.sh~&nbsp;&nbsp;&nbsp; 2005-11-22 08:18:02.000000000 -0500<br>+++ ltmain.sh&nbsp;&nbsp;&nbsp; 2006-05-13 15:52:13.000000000 -0400<br>@@ -2775,17 +2775,12 @@
<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *.la)<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; dir=`$echo &quot;X$deplib&quot; | $Xsed -e 's%/[^/]*$%%'`<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; test &quot;X$dir&quot; = &quot;X$deplib&quot; &amp;&amp; dir=&quot;.&quot;<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # We need an absolute path.<br>
-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; case $dir in<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [\\/]* | [A-Za-z]:[\\/]*) absdir=&quot;$dir&quot; ;;<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; *)<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; absdir=`cd &quot;$dir&quot; &amp;&amp; pwd`<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; if test -z &quot;$absdir&quot;; then<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $echo &quot;$modename: warning: cannot determine absolute directory name of \`$dir'&quot; 1&gt;&amp;2
<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; absdir=&quot;$dir&quot;<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; fi<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; ;;<br>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; esac<br>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # We need an absolute path with no /../'s.<br>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; absdir=`cd &quot;$dir&quot; &amp;&amp; pwd`<br>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if test -z &quot;$absdir&quot;; then
<br>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; $echo &quot;$modename: warning: cannot determine absolute directory name of \`$dir'&quot; 1&gt;&amp;2<br>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; absdir=&quot;$dir&quot;<br>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; fi<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if grep &quot;^installed=no&quot; $deplib &gt; /dev/null; then
<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; path=&quot;$absdir/$objdir&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else<br><br>