diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-11-18 22:05:37 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-11-18 22:05:37 +0000 |
commit | 42fcfd9cb44d7bc936fcde83b8a4a33f8a3363d5 (patch) | |
tree | 4fa43cf876c2da90df8a5589969898061bdac56d /www/dummyflash | |
parent | 996c44b6a4f3e5da4681724d21f20ea71d837a9b (diff) |
BROKEN on ia64 and amd64: Does not build
Notes
Notes:
svn path=/head/; revision=121911
Diffstat (limited to 'www/dummyflash')
-rw-r--r-- | www/dummyflash/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/dummyflash/Makefile b/www/dummyflash/Makefile index abc8ac5f8838..176c28eee133 100644 --- a/www/dummyflash/Makefile +++ b/www/dummyflash/Makefile @@ -21,8 +21,14 @@ BUILD_WRKSRC= ${WRKSRC}/PluginSDK30b5/examples/UnixTemplate/Unix NO_WRKSUBDIR= yes MAKEFILE= makefile.freebsd +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not build on ia64 or amd64" +.endif + do-install: @${MKDIR} ${PREFIX}/lib/browser_plugins ${INSTALL_DATA} ${BUILD_WRKSRC}/dummyflash.so ${PREFIX}/lib/browser_plugins -.include <bsd.port.mk> +.include <bsd.port.post.mk> |