bug-libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

cygpath usage


From: Akim Demaille
Subject: cygpath usage
Date: Thu, 29 Mar 2007 17:13:01 +0200

This is libtool 1.5.22, and I have seen the same problem with 1.5.23a.

ltmain.sh contains:

   if test -n "$fix_srcfile_path"; then
     eval srcfile=\"$fix_srcfile_path\"
   fi

but my libtool scripts reads as follows:

# Fix the shell variable $srcfile for the compiler.
fix_srcfile_path="`cygpath -w "$srcfile"`"

which obviously should have been

# Fix the shell variable $srcfile for the compiler.
fix_srcfile_path='`cygpath -w "$srcfile"`'

well I guess.  There is gonna be hair for quotes.  Why don't you use
functions?  My usual $0.02 :)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]