* ltmain.in: cygwin-1.1.0 and higher no longer grok backslash path

separators.
This commit is contained in:
Gary V. Vaughan 2000-05-17 10:20:26 +00:00
parent 30462d439d
commit 5921dc77fc
2 changed files with 16 additions and 3 deletions

View File

@ -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):

View File

@ -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.