libjava.exp: don't apply -no-install when platform is mingw.

2002-08-25  Adam Megacz <adam@xwt.org>

    * lib/libjava.exp: don't apply -no-install when platform is mingw.

From-SVN: r56573
This commit is contained in:
Adam Megacz 2002-08-26 05:26:32 +00:00 committed by Adam Megacz
parent f3cd98c4d6
commit e006911274
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-08-25 Adam Megacz <adam@xwt.org>
* lib/libjava.exp: don't apply -no-install when platform is mingw.
2002-08-16 H.J. Lu <hjl@gnu.org>
* lib/libjava.exp (gcc_version): Removed.

View File

@ -405,7 +405,7 @@ proc libjava_arguments {{mode compile}} {
# Avoid libtool wrapper scripts when possible.
# but not if libtool warnings results in FAILs
if {$mode == "link"} {
if {! [istarget "*-*-cygwin*"]} {
if {! [istarget "*-*-cygwin*"] && ! [istarget "*-*-mingw*"] } {
lappend args "additional_flags=-no-install"
}
}