Commit e0069112 by Adam Megacz Committed by Adam Megacz

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
parent f3cd98c4
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> 2002-08-16 H.J. Lu <hjl@gnu.org>
* lib/libjava.exp (gcc_version): Removed. * lib/libjava.exp (gcc_version): Removed.
......
...@@ -405,7 +405,7 @@ proc libjava_arguments {{mode compile}} { ...@@ -405,7 +405,7 @@ proc libjava_arguments {{mode compile}} {
# Avoid libtool wrapper scripts when possible. # Avoid libtool wrapper scripts when possible.
# but not if libtool warnings results in FAILs # but not if libtool warnings results in FAILs
if {$mode == "link"} { if {$mode == "link"} {
if {! [istarget "*-*-cygwin*"]} { if {! [istarget "*-*-cygwin*"] && ! [istarget "*-*-mingw*"] } {
lappend args "additional_flags=-no-install" lappend args "additional_flags=-no-install"
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment