Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Feb 2008 03:30:02 GMT
From:      Andrew Reilly <areilly@bigpond.net.au>
To:        freebsd-java@FreeBSD.org
Subject:   Re: java/120959: sablevm-classpath did not build/install from ports
Message-ID:  <200802220330.m1M3U2Du021704@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR java/120959; it has been noted by GNATS.

From: Andrew Reilly <areilly@bigpond.net.au>
To: bug-followup@FreeBSD.org, areilly@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200802220330.m1M3U2Du021704>