Fix Java tests by passing correct library path to JVM.

This commit is contained in:
Richard W.M. Jones
2009-04-23 11:11:35 +01:00
parent d660085d7a
commit 5d13ccaf55

View File

@@ -16,5 +16,6 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
cmd=$(echo $1 | sed -e 's,./t/,,' -e 's,.class,,')
$JAVA $cmd
cmd=$(echo $1 | sed -e 's,^./t/,,' -e 's,.class$,,')
$JAVA -Djava.library.path=.libs $cmd