diff options
author | Christian Weisgerber <naddy@FreeBSD.org> | 2009-11-02 18:28:59 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@FreeBSD.org> | 2009-11-02 18:28:59 +0000 |
commit | dd2862d85b1ac4e1b304e361afe239508220ddb3 (patch) | |
tree | a3e68e54ac86319cc908d7b2cf5c0f9a37302314 /shells | |
parent | caba4dc417d4c12681d4d33e1ff1392d6894d8ac (diff) | |
download | ports-dd2862d85b1ac4e1b304e361afe239508220ddb3.tar.gz ports-dd2862d85b1ac4e1b304e361afe239508220ddb3.zip |
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)
Notes
Notes:
svn path=/head/; revision=243665
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shells/bash/Makefile b/shells/bash/Makefile index 1e0656653e64..86b1661a9053 100644 --- a/shells/bash/Makefile +++ b/shells/bash/Makefile @@ -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> |