Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Sep 2012 18:46:08 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r304762 - head/www/fusionpbx
Message-ID:  <201209231846.q8NIk8k3054512@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Sun Sep 23 18:46:08 2012
New Revision: 304762
URL: http://svn.freebsd.org/changeset/ports/304762

Log:
  - Fix the use of ${PORT_OPTIONS} after r304757.
  - Remove a few PLIST_SUB entries which are not used.
  
  PR:		ports/171785
  Submitted by:	ohauer@ via private mail

Modified:
  head/www/fusionpbx/Makefile

Modified: head/www/fusionpbx/Makefile
==============================================================================
--- head/www/fusionpbx/Makefile	Sun Sep 23 18:35:49 2012	(r304761)
+++ head/www/fusionpbx/Makefile	Sun Sep 23 18:46:08 2012	(r304762)
@@ -38,7 +38,7 @@ PDOMYSQL_DESC=	Install MySQL PDO Connect
 .include <bsd.port.options.mk>
 
 .for opt in ${ALL_OPTIONS}
-.if $(PORT_OPTIONS:M${opt})
+.if ${PORT_OPTIONS:M${opt}}
 PLIST_SUB+=	${opt}=""
 .else
 PLIST_SUB+=	${opt}="@comment "
@@ -48,13 +48,11 @@ PLIST_SUB+=	${opt}="@comment "
 .if ${PORT_OPTIONS:MPDOPGSQL}
 USE_PGSQL=	yes
 USE_PHP+=	pgsql pdo_pgsql
-PLIST_SUB+=	WITH_PDOPGSQL=""
 .endif
 
 .if ${PORT_OPTIONS:MPDOMYSQL}
 USE_MYSQL=	client
 USE_PHP+=	mysql pdo_mysql
-PLIST_SUB+=	WITH_PDOMYSQL=""
 .endif
 
 do-install:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209231846.q8NIk8k3054512>