diff options
author | rakuco <rakuco@FreeBSD.org> | 2012-09-24 02:46:08 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2012-09-24 02:46:08 +0800 |
commit | 0f32b94bd4b90757ce484e0a80aad81f9d0f22f3 (patch) | |
tree | 9af81e188f67db4d7d0449ccee82b959642623c6 | |
parent | 5d0ccf80b2ab11856114f77aa5c090e385ea425b (diff) | |
download | freebsd-ports-gnome-0f32b94bd4b90757ce484e0a80aad81f9d0f22f3.tar.gz freebsd-ports-gnome-0f32b94bd4b90757ce484e0a80aad81f9d0f22f3.tar.zst freebsd-ports-gnome-0f32b94bd4b90757ce484e0a80aad81f9d0f22f3.zip |
- 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
-rw-r--r-- | www/fusionpbx/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/www/fusionpbx/Makefile b/www/fusionpbx/Makefile index fd0f6fcf4efa..adba28b3cfc8 100644 --- a/www/fusionpbx/Makefile +++ b/www/fusionpbx/Makefile @@ -38,7 +38,7 @@ PDOMYSQL_DESC= Install MySQL PDO Connector .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: |