svn commit: r399942 - head/net/kea

Hiroki Sato hrs at FreeBSD.org
Thu Oct 22 02:04:35 UTC 2015


Author: hrs
Date: Thu Oct 22 02:04:33 2015
New Revision: 399942
URL: https://svnweb.freebsd.org/changeset/ports/399942

Log:
  Fix typos in non-default options which prevented them from working.
  
  Reported by:	Evgeny Dunaev
  Pointy hat to:	hrs

Modified:
  head/net/kea/Makefile

Modified: head/net/kea/Makefile
==============================================================================
--- head/net/kea/Makefile	Thu Oct 22 01:55:05 2015	(r399941)
+++ head/net/kea/Makefile	Thu Oct 22 02:04:33 2015	(r399942)
@@ -42,11 +42,11 @@ DOCS_INSTALL_TARGET_OFF= \
 		install-pkgconfigDATA \
 		install-pkgincludeHEADERS
 MYSQL_USE=	MYSQL=client
-MYSQL_CONFIGURE_ARGS=		--with-dhcp-mysql=${LOCALBASE}/bin
-MYSQL_CONFIGURE_ARGS_OFF=	--without-dhcp-mysql
+MYSQL_CONFIGURE_ON=	--with-dhcp-mysql=${LOCALBASE}/bin/mysql_config
+MYSQL_CONFIGURE_OFF=	--without-dhcp-mysql
 PGSQL_USES=	pgsql
 WANT_PGSQL=	client
-PGSQL_CONFIGURE_ARGS=		--with-dhcp-pgsql=${LOCALBASE}/bin
-PGSQL_CONFIGURE_ARGS_OFF=	--without-dhcp-pgsql
+PGSQL_CONFIGURE_ON=	--with-dhcp-pgsql=${LOCALBASE}/bin/pg_config
+PGSQL_CONFIGURE_OFF=	--without-dhcp-pgsql
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list