diff options
author | znerd <znerd@FreeBSD.org> | 2002-10-10 08:38:39 +0000 |
---|---|---|
committer | znerd <znerd@FreeBSD.org> | 2002-10-10 08:38:39 +0000 |
commit | 5f5179de26d38781425a4067cd0fb4dcd4f0409d (patch) | |
tree | 4721689e202a1cda58ea6eaf35e5f5fb64d50f87 /java/jdk12 | |
parent | 73eb630512cb408be8c7cceedfdaad5655c57930 (diff) | |
download | FreeBSD-ports-5f5179de26d38781425a4067cd0fb4dcd4f0409d.zip FreeBSD-ports-5f5179de26d38781425a4067cd0fb4dcd4f0409d.tar.gz |
Not using IGNORE anymore to avoid package building.
.if defined(BATCH) || defined(PACKAGE_BUILDING)
IGNORE= "You can not legally distribute binaries"
.endif
This was superfluous and inhibiting package builds of things that
depend on the port. Having RESTRICTED and NO_CDROM is enough to
ensure that a package will not appear on the FTP site or a CDROM
(it will be built and used as a basis for other packages to build
with, but will be deleted at the end of the build run).
Requested by: kris
Reviewed by: portmgr (silence)
PR: 42758
Diffstat (limited to 'java/jdk12')
-rw-r--r-- | java/jdk12/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/java/jdk12/Makefile b/java/jdk12/Makefile index e4f71db..30fad6e 100644 --- a/java/jdk12/Makefile +++ b/java/jdk12/Makefile @@ -43,7 +43,8 @@ JDK12DIR?= ${LOCALBASE}/linux-sun-jdk${JDK_VERSION} ONLY_FOR_ARCHS= i386 USE_GMAKE= yes -RESTRICTED= "Redistribution of pre-compiled binaries isn't permitted" +RESTRICTED= "Redistribution of pre-compiled binaries is not permitted" +NO_CDROM= "Redistribution of pre-compiled binaries is not permitted" MAKEFILE= GNUmakefile MAKE_ENV= HAVE_DPS="no" \ ALT_BOOTDIR="${JDK12DIR}" \ @@ -71,10 +72,6 @@ PKGNAMESUFFIX= -nodebug PLIST_SUB+= DEBUG:="" .endif -.if defined(BATCH) || defined(PACKAGE_BUILDING) -IGNORE= "You can not legally distribute pre-compiled binaries" -.endif - .include <bsd.port.pre.mk> .for file in ${DISTFILES} |