diff options
author | linimon <linimon@FreeBSD.org> | 2003-10-21 04:45:09 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-10-21 04:45:09 +0800 |
commit | eb109d979cae72872115b32d233f85696ad8e91a (patch) | |
tree | 72d69e58166671ac4b40b7937fcc0ab1652a922d /shells | |
parent | bc0ed73630ab2da032e600b2094cc01ee3e87fbe (diff) | |
download | freebsd-ports-gnome-eb109d979cae72872115b32d233f85696ad8e91a.tar.gz freebsd-ports-gnome-eb109d979cae72872115b32d233f85696ad8e91a.tar.zst freebsd-ports-gnome-eb109d979cae72872115b32d233f85696ad8e91a.zip |
Remove BROKEN case for i386 4.x.
Previous attempt at deprecation objected to by: krion
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash1/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/shells/bash1/Makefile b/shells/bash1/Makefile index dfc71f61e69e..dd90fb013d04 100644 --- a/shells/bash1/Makefile +++ b/shells/bash1/Makefile @@ -15,7 +15,15 @@ MASTER_SITE_SUBDIR= bash MAINTAINER= ports@FreeBSD.org COMMENT= The GNU Bourne Again Shell -- old version -BROKEN= "does not compile on 5.x; consider upgrading to shells/bash2" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} <= 501000 && ${MACHINE_ARCH} != i386 +BROKEN= "does not compile on ${MACHINE_ARCH}" +.endif + +.if ${OSVERSION} >= 501000 +BROKEN= "does not compile on FreeBSD ${OSVERSION}" +.endif NO_LATEST_LINK= yes WRKSRC= ${WRKDIR}/${DISTNAME} @@ -27,4 +35,4 @@ INFO= bash post-install: @install-info ${PREFIX}/info/bash.info ${PREFIX}/info/dir -.include <bsd.port.mk> +.include <bsd.port.post.mk> |