summaryrefslogtreecommitdiff
path: root/shells/bash
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2006-03-06 21:58:25 +0000
committerKris Kennaway <kris@FreeBSD.org>2006-03-06 21:58:25 +0000
commit8e180ab31a8eb905970fdf1eee869fce26e7af17 (patch)
treed1643042471eeb1b7f2bf9301404a6c2291054dd /shells/bash
parentBROKEN: Incomplete dependency list (diff)
When bash is built with the bison 1.75 port present it breaks the ability
of bash to parse certain legal shell scripts (used by e.g. GNU configure). Fix this by explicitly directing bash to use yacc. Bump PORTREVISION since this is likely to be a common enough occurrence that many users will benefit from the rebuild. Submitted by: Nicolas Rachinsky <nicolas-0@ml.turing-complete.org> PR: ports/94086 Approved by: portmgr (implicit)
Notes
Notes: svn path=/head/; revision=156996
Diffstat (limited to 'shells/bash')
-rw-r--r--shells/bash/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/shells/bash/Makefile b/shells/bash/Makefile
index 18081863ac07..101d7460f3b9 100644
--- a/shells/bash/Makefile
+++ b/shells/bash/Makefile
@@ -7,6 +7,7 @@
PORTNAME= bash
PORTVERSION= 3.1.${PATCHLEVEL:S/^0//g}
+PORTREVISION= 1
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GNU:S/$/:bash/} \
ftp://ftp.cwru.edu/pub/%SUBDIR%/:faq
@@ -89,7 +90,8 @@ CPPFLAGS+= ${PTHREAD_CFLAGS} \
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \
- LDFLAGS="${LDFLAGS}"
+ LDFLAGS="${LDFLAGS}" \
+ YACC="${YACC}"
.include <bsd.port.pre.mk>