libjava.exp (libjava_arguments): Build with `-no-install' when $mode == "link".

* lib/libjava.exp (libjava_arguments): Build with `-no-install'
when $mode == "link".

From-SVN: r42928
This commit is contained in:
Jeff Sturm 2001-06-06 02:53:52 +00:00 committed by Jeff Sturm
parent 910e231e80
commit 9166f7a36a
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-06-05 Jeff Sturm <jsturm@one-point.com>
* lib/libjava.exp (libjava_arguments): Build with `-no-install'
when $mode == "link".
2001-06-02 Anthony Green <green@redhat.com>
* libjava.lang/invokethrow.java: Fake a pass for systems which

View File

@ -313,6 +313,11 @@ proc libjava_arguments {{mode compile}} {
lappend args "compiler=$GCJ_UNDER_TEST -B$objdir/../"
}
# Avoid libtool wrapper scripts when possible.
if {$mode == "link"} {
lappend args "additional_flags=-no-install"
}
return $args
}