mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-12 14:06:37 +08:00
* ltmain.in: cygwin-1.1.0 and higher no longer grok backslash path
separators.
This commit is contained in:
parent
30462d439d
commit
5921dc77fc
@ -1,3 +1,8 @@
|
||||
2000-05-17 Gary V. Vaughan <gvv@techie.com>
|
||||
|
||||
* ltmain.in: cygwin-1.1.0 and higher no longer grok backslash path
|
||||
separators.
|
||||
|
||||
2000-05-14 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
|
||||
|
||||
* libtool.m4 (AC_LIBLTDL_CONVENIENCE, AC_LIBLTDL_INSTALLABLE):
|
||||
|
14
ltmain.in
14
ltmain.in
@ -3559,13 +3559,21 @@ else
|
||||
# Run the actual program with our arguments.
|
||||
"
|
||||
case $host in
|
||||
*-*-cygwin* | *-*-mingw | *-*-os2*)
|
||||
# win32 systems need to use the prog path for dll
|
||||
# lookup to work
|
||||
# win32 systems need to use the prog path for dll
|
||||
# lookup to work
|
||||
*-*-cygwin*)
|
||||
$echo >> $output "\
|
||||
exec \$progdir/\$program \${1+\"\$@\"}
|
||||
"
|
||||
;;
|
||||
|
||||
# Backslashes separate directories on plain windows
|
||||
*-*-mingw | *-*-os2*)
|
||||
$echo >> $output "\
|
||||
exec \$progdir\\\\\$program \${1+\"\$@\"}
|
||||
"
|
||||
;;
|
||||
|
||||
*)
|
||||
$echo >> $output "\
|
||||
# Export the path to the program.
|
||||
|
Loading…
Reference in New Issue
Block a user