aboutsummaryrefslogtreecommitdiffstats
path: root/x11-wm
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2012-06-01 06:35:33 +0800
committerbapt <bapt@FreeBSD.org>2012-06-01 06:35:33 +0800
commitf24a1074ff5d595db963e2b34cfafcbcaa2b7e0c (patch)
treea262fd259889d7b6a2cdaa7e55205271759b7cd4 /x11-wm
parent6af99a0e8f037c6808bae2eddd0384aa8613bd5c (diff)
downloadfreebsd-ports-gnome-f24a1074ff5d595db963e2b34cfafcbcaa2b7e0c.tar.gz
freebsd-ports-gnome-f24a1074ff5d595db963e2b34cfafcbcaa2b7e0c.tar.zst
freebsd-ports-gnome-f24a1074ff5d595db963e2b34cfafcbcaa2b7e0c.zip
Fix multiple options testing in one line
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/compiz/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-wm/compiz/Makefile b/x11-wm/compiz/Makefile
index 5c2e9c512663..46c742922f14 100644
--- a/x11-wm/compiz/Makefile
+++ b/x11-wm/compiz/Makefile
@@ -108,7 +108,7 @@ CONFIGURE_ARGS+= --disable-gtk
PLIST_SUB+= GTK2="@comment "
.endif
-.if ${PORT_OPTIONS:MMETACITY} && ${PORT_OPTIONS:MGNOME} && ${PORT_OPTIONS:MGTK2}
+.if !empty(PORT_OPTIONS:MMETACITY) && !empty(PORT_OPTIONS:MGNOME) && !empty(PORT_OPTIONS:MGTK2)
CONFIGURE_ARGS+= --enable-metacity
USE_GNOME+= metacity
.else