From owner-freebsd-java@FreeBSD.ORG Fri Feb 22 03:30:02 2008 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC9A216A403 for ; Fri, 22 Feb 2008 03:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BDDFF13C469 for ; Fri, 22 Feb 2008 03:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m1M3U2jt021707 for ; Fri, 22 Feb 2008 03:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m1M3U2Du021704; Fri, 22 Feb 2008 03:30:02 GMT (envelope-from gnats) Date: Fri, 22 Feb 2008 03:30:02 GMT Message-Id: <200802220330.m1M3U2Du021704@freefall.freebsd.org> To: freebsd-java@FreeBSD.org From: Andrew Reilly Cc: Subject: Re: java/120959: sablevm-classpath did not build/install from ports X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrew Reilly List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 03:30:02 -0000 The following reply was made to PR java/120959; it has been noted by GNATS. From: Andrew Reilly 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