When installing the java/jdk13 port (patchlevel 6), the generated src.jar file is way too small (around 11K). Fix: Dunno. How-To-Repeat: Install the port java/jdk13.
No solution yet, but I know what the problem is. Basically, before the source is jarred up it is copied over to the release image staging area using tar. Unfortunately there are too many files for tar to do this in one big hit and it dies with the error: /usr/bin/tar: argument list too long So, the only contents in the source staging area when the jarring occurs are the header files which are copied separately to the Java source. I'm looking into a few different workarounds for this. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology
Responsible Changed From-To: freebsd-ports->java Over to maintainers
Attached patch works for me. Put it in /ports/java/jdk13/files/patch-common::Release.gmk and you should be right. Obviously this is less efficient, but compared to the entire build process the impact is very minimal. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology
Responsible Changed From-To: java->znerd I'll handle the submitted patch.
The patch has been committed. Thanks, Greg! Ernst On Saturday 09 March 2002 19:51, Greg Lewis wrote: > Attached patch works for me. Put it in > > /ports/java/jdk13/files/patch-common::Release.gmk > > and you should be right. > > Obviously this is less efficient, but compared to the entire build process > the impact is very minimal. -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ
Responsible Changed From-To: znerd->glewis Over to the porter.
State Changed From-To: open->closed Close this PR after committing a patch that fixes it.