diff options
author | linimon <linimon@FreeBSD.org> | 2017-10-11 05:31:30 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2017-10-11 05:31:30 +0800 |
commit | bc940feb08f69c198c2d6ba70142c26f6a35f8ff (patch) | |
tree | f3d89a0399e1e0896808a5ab7c804ecd549e47db /java/bouncycastle15 | |
parent | 8be4719cfd2cb75c5c21d067453d3464fc2be7e7 (diff) | |
download | freebsd-ports-gnome-bc940feb08f69c198c2d6ba70142c26f6a35f8ff.tar.gz freebsd-ports-gnome-bc940feb08f69c198c2d6ba70142c26f6a35f8ff.tar.zst freebsd-ports-gnome-bc940feb08f69c198c2d6ba70142c26f6a35f8ff.zip |
For ports that are explicitly enabled on armv6, also enable them
on armv7. This has not been tested with an -exp run but should
"do no harm".
PR: 221894 (partial)
Diffstat (limited to 'java/bouncycastle15')
-rw-r--r-- | java/bouncycastle15/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/bouncycastle15/Makefile b/java/bouncycastle15/Makefile index 540a126928e7..fe3629228774 100644 --- a/java/bouncycastle15/Makefile +++ b/java/bouncycastle15/Makefile @@ -48,7 +48,8 @@ PORTDOCS= * .include <bsd.port.options.mk> # PR 220612: remove fork="true" in javac and fork="yes" in junit tasks -.if ${ARCH}=="armv6" +# NB: as of adding armv7, the patchname is kind of obsolete. +.if ${ARCH} == armv6 || ${ARCH} == armv7 EXTRA_PATCHES+= ${FILESDIR}/armv6-patch-bc+-build.xml .endif |