diff options
author | antoine <antoine@FreeBSD.org> | 2016-03-21 20:41:22 +0000 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2016-03-21 20:41:22 +0000 |
commit | 59b2be0f0dbf54dff4a994ecb38f642c6181b579 (patch) | |
tree | 4e57f4d889c28067943995fdb47669afff3bc0c5 | |
parent | ebce8cf092d6497c5a835288c59107369f2ccf36 (diff) | |
download | FreeBSD-ports-59b2be0f0dbf54dff4a994ecb38f642c6181b579.zip FreeBSD-ports-59b2be0f0dbf54dff4a994ecb38f642c6181b579.tar.gz |
MFH: r411616
Ignore on the 9.3 i386 package builders, java seems to have issues in
9.3 i386 jails on the package builders
Reported by: pkg-fallout
-rw-r--r-- | misc/freebsd-doc-en/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/freebsd-doc-en/Makefile b/misc/freebsd-doc-en/Makefile index 5e6e9d1..eca5584 100644 --- a/misc/freebsd-doc-en/Makefile +++ b/misc/freebsd-doc-en/Makefile @@ -54,6 +54,10 @@ OPTIONS_SET+= ${AVAILABLEFORMATS} .include <bsd.port.options.mk> +.if defined(PACKAGE_BUILDING) && ${OSVERSION} < 1000000 && ${ARCH} == i386 +IGNORE= fails to build on the package builders in 9.x i386 jails due to java exceptions +.endif + .for O in ${AVAILABLEFORMATS} .if ${PORT_OPTIONS:M${O}} DOCFORMAT+= ${O:tl:S,_,-,} |