diff options
-rw-r--r-- | devel/root/Makefile | 2 | ||||
-rw-r--r-- | sysutils/udfclient/Makefile | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/devel/root/Makefile b/devel/root/Makefile index 3479f49a4d52..57ae8bba3779 100644 --- a/devel/root/Makefile +++ b/devel/root/Makefile @@ -151,7 +151,7 @@ CONFIGURE_ARGS+= --disable-srp BROKEN= Does not compile .endif -.if ${ARCH} == "amd64" +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" BROKEN= Does not compile .endif diff --git a/sysutils/udfclient/Makefile b/sysutils/udfclient/Makefile index 21320899a1de..aee5f00b9ece 100644 --- a/sysutils/udfclient/Makefile +++ b/sysutils/udfclient/Makefile @@ -28,4 +28,10 @@ PLIST_FILES= bin/udfdump \ bin/cd_disect \ bin/cdrw_format -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + +.include <bsd.port.post.mk> |