summaryrefslogtreecommitdiff
path: root/shells/bash1
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2003-10-20 20:45:09 +0000
committerMark Linimon <linimon@FreeBSD.org>2003-10-20 20:45:09 +0000
commitd3eb56dbcc81309cc55d5ab1df2071711261a640 (patch)
tree4f599a89a806d8d58b57bf9626e33e3717cd42ff /shells/bash1
parentDon't die if we encounter a problem registering plug-ins on ia64. Right now, (diff)
Remove BROKEN case for i386 4.x.
Previous attempt at deprecation objected to by: krion
Notes
Notes: svn path=/head/; revision=91757
Diffstat (limited to 'shells/bash1')
-rw-r--r--shells/bash1/Makefile12
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>