Pass the -y flag to bison to fix $() parsing.

Plain "bison -d parse.y" outputs parse.tab.c instead of y.tab.c,
so y.tab.c is never regenerated, and the parser fix from patch 001
is effectively not applied.

PR:		139720
Approved by:	maintainer timeout (4+2 weeks)
This commit is contained in:
Christian Weisgerber 2009-11-02 18:28:59 +00:00
parent caba4dc417
commit dd2862d85b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=243665

View file

@ -9,7 +9,7 @@
PORTNAME= bash
PATCHLEVEL= 33
PORTVERSION= 4.0.${PATCHLEVEL:S/^0//g}
PORTREVISION?= 1
PORTREVISION?= 2
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GNU:S/$/:bash/} \
ftp://ftp.cwru.edu/pub/%SUBDIR%/:faq
@ -93,7 +93,7 @@ LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \
LDFLAGS="${LDFLAGS}" \
YACC="bison"
YACC="bison -y"
.include <bsd.port.pre.mk>