diff options
author | Adam Megacz <adam@xwt.org> | 2002-08-26 05:26:32 +0000 |
---|---|---|
committer | Adam Megacz <megacz@gcc.gnu.org> | 2002-08-26 05:26:32 +0000 |
commit | e006911274ebef84eb89179c41c469b6ece85f95 (patch) | |
tree | b1c0919c4638cbf5a339d4cda2d42fcc6dc0f5c6 /libjava/testsuite/lib | |
parent | f3cd98c4d6508838a6e8314ef5c1bdd5f9feb083 (diff) | |
download | gcc-e006911274ebef84eb89179c41c469b6ece85f95.zip gcc-e006911274ebef84eb89179c41c469b6ece85f95.tar.gz gcc-e006911274ebef84eb89179c41c469b6ece85f95.tar.bz2 |
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
Diffstat (limited to 'libjava/testsuite/lib')
-rw-r--r-- | libjava/testsuite/lib/libjava.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/testsuite/lib/libjava.exp b/libjava/testsuite/lib/libjava.exp index bbac0ea..3cb6140 100644 --- a/libjava/testsuite/lib/libjava.exp +++ b/libjava/testsuite/lib/libjava.exp @@ -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" } } |