svn commit: r507203 - in head: devel/babeltrace devel/clixon security/aide

Tobias Kortkamp tobik at FreeBSD.org
Tue Jul 23 06:21:42 UTC 2019


Author: tobik
Date: Tue Jul 23 06:21:40 2019
New Revision: 507203
URL: https://svnweb.freebsd.org/changeset/ports/507203

Log:
  Fix build as user
  
  Fix more instances of the YACC!="bison -y" problem from r507202.

Modified:
  head/devel/babeltrace/Makefile
  head/devel/clixon/Makefile
  head/security/aide/Makefile

Modified: head/devel/babeltrace/Makefile
==============================================================================
--- head/devel/babeltrace/Makefile	Tue Jul 23 05:57:34 2019	(r507202)
+++ head/devel/babeltrace/Makefile	Tue Jul 23 06:21:40 2019	(r507203)
@@ -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

Modified: head/devel/clixon/Makefile
==============================================================================
--- head/devel/clixon/Makefile	Tue Jul 23 05:57:34 2019	(r507202)
+++ head/devel/clixon/Makefile	Tue Jul 23 06:21:40 2019	(r507203)
@@ -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
 

Modified: head/security/aide/Makefile
==============================================================================
--- head/security/aide/Makefile	Tue Jul 23 05:57:34 2019	(r507202)
+++ head/security/aide/Makefile	Tue Jul 23 06:21:40 2019	(r507203)
@@ -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
 


More information about the svn-ports-all mailing list