The ports Makefile has this: .if defined(WITH_JAIL)#{ @if [ "`/sbin/mount | grep ^linprocfs`" = "" ]; \ then \ ${ECHO_MSG} "ERROR: You must have LINPROCFS mounted before" ; \ ${ECHO_MSG} "starting to build the native JDK 1.5.0." ; \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "You may do it with the following commands:" ; \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "# kldload linprocfs" ; \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "and" ; \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "# mount -t linprocfs linprocfs /compat/linux/proc" ; \ ${ECHO_MSG} "" ; \ exit 1 ; \ fi .endif#} which as far as I can see, should be tested when the build is done *outside* a jail. Inside a jail the port should check if the file /compat/linux/proc/self exists (as a symlink).
Responsible Changed From-To: freebsd-ports-bugs->glewis Over to maintainer
glewis 2007-03-07 18:34:00 UTC FreeBSD ports repository Modified files: java/jdk15 Makefile Log: . Fix the sense of a WITH_JAIL check to match that in the jdk14 port - we _don't_ want to check for linprocfs in a jail. PR: 110019 Revision Changes Path 1.124 +1 -1 ports/java/jdk15/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Reversed the logic to match the jdk14 port. Thanks!