diff options
author | kris <kris@FreeBSD.org> | 2004-03-07 13:06:59 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-07 13:06:59 +0800 |
commit | 0d9c6adbb2a92fdaa85b9c4c17f2948564067deb (patch) | |
tree | d267766600fc0fa9169c90325fe6aa9832135a92 /shells | |
parent | 31f6a257ec5fc70d11bffd30feff4a615c4cc4f8 (diff) | |
download | freebsd-ports-gnome-0d9c6adbb2a92fdaa85b9c4c17f2948564067deb.tar.gz freebsd-ports-gnome-0d9c6adbb2a92fdaa85b9c4c17f2948564067deb.tar.zst freebsd-ports-gnome-0d9c6adbb2a92fdaa85b9c4c17f2948564067deb.zip |
BROKEN on ia64: Does not compile
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash1/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/shells/bash1/Makefile b/shells/bash1/Makefile index 2270677c12bb..b3e871f24930 100644 --- a/shells/bash1/Makefile +++ b/shells/bash1/Makefile @@ -22,7 +22,13 @@ NOMANCOMPRESS= yes MAN1= bash.1 bash_builtins.1 INFO= bash +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" +BROKEN= "Does not compile on ia64" +.endif + post-install: @install-info ${PREFIX}/info/bash.info ${PREFIX}/info/dir -.include <bsd.port.mk> +.include <bsd.port.post.mk> |