diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-07-23 06:21:40 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-07-23 06:21:40 +0000 |
commit | fe9c6f3a23f972c50c90753c3f7682ea050f50d7 (patch) | |
tree | 5e0e8713c8a8bf66b6537daa408fde05d29770cb | |
parent | misc/lifelines: Unbreak build as user (diff) |
Fix build as user
Fix more instances of the YACC!="bison -y" problem from r507202.
Notes
Notes:
svn path=/head/; revision=507203
-rw-r--r-- | devel/babeltrace/Makefile | 1 | ||||
-rw-r--r-- | devel/clixon/Makefile | 1 | ||||
-rw-r--r-- | security/aide/Makefile | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/devel/babeltrace/Makefile b/devel/babeltrace/Makefile index 88f0a07b4067..17d113134c04 100644 --- a/devel/babeltrace/Makefile +++ b/devel/babeltrace/Makefile @@ -26,6 +26,7 @@ GH_ACCOUNT= efficios GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-debug-info +CONFIGURE_ENV= YACC="bison -y" USE_GNOME= glib20 LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes diff --git a/devel/clixon/Makefile b/devel/clixon/Makefile index ba21fb6e2deb..3fab143d473e 100644 --- a/devel/clixon/Makefile +++ b/devel/clixon/Makefile @@ -25,6 +25,7 @@ MAKE_ARGS= wwwdir=${PREFIX}/sbin wwwuser=${WWWOWN} GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-cligen=${LOCALBASE} --sysconfdir=${ETCDIR} +CONFIGURE_ENV= YACC="bison -y" MAKE_JOBS_UNSAFE=yes diff --git a/security/aide/Makefile b/security/aide/Makefile index e0917a86ec7c..5f7d21785669 100644 --- a/security/aide/Makefile +++ b/security/aide/Makefile @@ -19,6 +19,7 @@ CONFIGURE_ARGS+=--with-mhash \ --with-zlib \ --mandir=${MANPREFIX}/man \ --with-config_file=${PREFIX}/etc/aide.conf +CONFIGURE_ENV= YACC="bison -y" LDFLAGS+= -lpthread |