diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-06-20 13:14:20 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-06-20 13:14:20 +0000 |
commit | 2037b2ce13e4d39984a184e6f5b0bac63caa4690 (patch) | |
tree | 456b25514735f912a02e9ef9ca8114261a23a518 | |
parent | c58462753d91195ae7f8677341428606a91be0ae (diff) | |
download | ports-2037b2ce13e4d39984a184e6f5b0bac63caa4690.tar.gz ports-2037b2ce13e4d39984a184e6f5b0bac63caa4690.zip |
x11-wm/blackbox: fix build on powerpc
Same issue as on armv*.
-rw-r--r-- | x11-wm/blackbox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-wm/blackbox/Makefile b/x11-wm/blackbox/Makefile index 4d9828aa2af8..2715f219c4d9 100644 --- a/x11-wm/blackbox/Makefile +++ b/x11-wm/blackbox/Makefile @@ -33,7 +33,7 @@ TOOLS_ONLY_VARS_OFF= PORTDOCS+="AUTHORS COMPLIANCE ChangeLog README RELNOTES TO .include <bsd.port.options.mk> -.if ${ARCH} == armv6 || ${ARCH} == armv7 +.if ${ARCH} == armv6 || ${ARCH} == armv7 || ${ARCH} == powerpc EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_Toolbar.cc .endif |