* ltmain.in: Only append a dot to the wrapper script when

building on cygwin/MSYS (check for $build, not $host).
This commit is contained in:
Ralph Schleicher 2003-02-28 15:27:35 +00:00 committed by Robert Boehne
parent 9bf3d0dd98
commit 859d6cacc0
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-02-28 Ralph Schleicher <rs@nunatak.allgaeu.org>
* ltmain.in: Only append a dot to the wrapper script when
building on cygwin/MSYS (check for $build, not $host).
2003-02-27 Samuel Meder <meder@mcs.anl.gov>
* libtool.m4 (ia64): Add support for Intel compiler (ecc) on IA64

View File

@ -5410,7 +5410,7 @@ relink_command=\"$relink_command\""
# To insure that "foo" is sourced, and not "foo.exe",
# finese the cygwin/MSYS system by explicitly sourcing "foo."
# which disallows the automatic-append-.exe behavior.
case $host in
case $build in
*cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
*) wrapperdot=${wrapper} ;;
esac
@ -5448,7 +5448,7 @@ relink_command=\"$relink_command\""
# To insure that "foo" is sourced, and not "foo.exe",
# finese the cygwin/MSYS system by explicitly sourcing "foo."
# which disallows the automatic-append-.exe behavior.
case $host in
case $build in
*cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
*) wrapperdot=${wrapper} ;;
esac