diff options
author | glewis <glewis@FreeBSD.org> | 2007-03-08 02:34:00 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2007-03-08 02:34:00 +0800 |
commit | 8f6bcb573bdf9b6a7707e2fcaa22415afb4bce7c (patch) | |
tree | f40645850a0ddd96570064bc84c0b944bae98719 /java | |
parent | 062f41fde417e74a781abb518522cae7f2c61ee9 (diff) | |
download | freebsd-ports-gnome-8f6bcb573bdf9b6a7707e2fcaa22415afb4bce7c.tar.gz freebsd-ports-gnome-8f6bcb573bdf9b6a7707e2fcaa22415afb4bce7c.tar.zst freebsd-ports-gnome-8f6bcb573bdf9b6a7707e2fcaa22415afb4bce7c.zip |
. 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
Diffstat (limited to 'java')
-rw-r--r-- | java/jdk15/Makefile | 2 | ||||
-rw-r--r-- | java/jdk16/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/java/jdk15/Makefile b/java/jdk15/Makefile index 0395c19968e9..9d377b9a3243 100644 --- a/java/jdk15/Makefile +++ b/java/jdk15/Makefile @@ -270,7 +270,7 @@ pre-build: ${ECHO_MSG} "is known to cause problems during bootstrapping."; \ exit 1; \ fi -.if defined(WITH_JAIL)#{ +.if !defined(WITH_JAIL)#{ @if [ "`/sbin/mount | grep ^linprocfs`" = "" ]; \ then \ ${ECHO_MSG} "ERROR: You must have LINPROCFS mounted before" ; \ diff --git a/java/jdk16/Makefile b/java/jdk16/Makefile index 0395c19968e9..9d377b9a3243 100644 --- a/java/jdk16/Makefile +++ b/java/jdk16/Makefile @@ -270,7 +270,7 @@ pre-build: ${ECHO_MSG} "is known to cause problems during bootstrapping."; \ exit 1; \ fi -.if defined(WITH_JAIL)#{ +.if !defined(WITH_JAIL)#{ @if [ "`/sbin/mount | grep ^linprocfs`" = "" ]; \ then \ ${ECHO_MSG} "ERROR: You must have LINPROCFS mounted before" ; \ |