java/120959: sablevm-classpath did not build/install from ports
Andrew Reilly
areilly at bigpond.net.au
Fri Feb 22 03:30:02 UTC 2008
The following reply was made to PR java/120959; it has been noted by GNATS.
From: Andrew Reilly <areilly at bigpond.net.au>
To: bug-followup at FreeBSD.org, areilly at bigpond.net.au
Cc:
Subject: Re: java/120959: sablevm-classpath did not build/install from ports
Date: Fri, 22 Feb 2008 14:25:55 +1100
Actually, that was really easy to fix. A script was trying to do this:
mkdir -p /usr/local/lib/sablevm/{lib,jre/lib}
which doesn't work in our /bin/sh. (Where does it work? Zsh?)
I made the directories manually, and the installation proceeded properly.
The fix is to replace that line with two:
mkdir -p /usr/local/lib/sablevm/lib
mkdir -p /usr/local/lib/sablevm/jre/lib
Not sure where, though...
--
Andrew
More information about the freebsd-java
mailing list