aboutsummaryrefslogtreecommitdiff
path: root/misc/lifelines
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2019-07-23 05:57:34 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2019-07-23 05:57:34 +0000
commita16b7a548641bfc6e1f335d8957e277abd9c6974 (patch)
tree016b73097497036af2680c03043a6794a2c186b2 /misc/lifelines
parent5e20319a64c8155fd3398bbe5e2afbee806fb8c4 (diff)
downloadports-a16b7a548641bfc6e1f335d8957e277abd9c6974.tar.gz
ports-a16b7a548641bfc6e1f335d8957e277abd9c6974.zip
misc/lifelines: Unbreak build as user
checking for bison... bison -o y.tab.c LifeLines requires GNU Bison to compile src/interp/yacc.y. =========================================================================== =======================<phase: build >============================ ===> Building for lifelines-3.1.1_1 gmake[1]: Entering directory '/wrkdirs/usr/ports/misc/lifelines/work/lifelines-3.1.1' gmake[1]: Makefile: No such file or directory The configure script cannot cope with any value for YACC that is not "bison -y" and just exits with an error (and exit status 0, so the build continues and fails in the next phase when it cannot find Makefile) when it is a different value. Set it to "bison -y" explicitly. This will fix building as user, but it is not clear why we do not see this failure when building as root.
Notes
Notes: svn path=/head/; revision=507202
Diffstat (limited to 'misc/lifelines')
-rw-r--r--misc/lifelines/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/lifelines/Makefile b/misc/lifelines/Makefile
index 9539fb8c101f..1eba3217ae46 100644
--- a/misc/lifelines/Makefile
+++ b/misc/lifelines/Makefile
@@ -15,6 +15,7 @@ LICENSE= MIT
USES= autoreconf bison gmake iconv ncurses
GNU_CONFIGURE= yes
+CONFIGURE_ENV= YACC="bison -y"
MAKE_JOBS_UNSAFE=yes