aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2012-05-31 22:35:33 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2012-05-31 22:35:33 +0000
commitc2e47e62498e39b3a412817f9fad2d9f5a1a2f86 (patch)
treecbfaea3bb206b77fb4118bc5a57d396cd7af30dd /x11-toolkits
parent4369b575850a0c15a1a1beb1f5d59b3260ddc5b3 (diff)
downloadports-c2e47e62498e39b3a412817f9fad2d9f5a1a2f86.tar.gz
ports-c2e47e62498e39b3a412817f9fad2d9f5a1a2f86.zip
Fix multiple options testing in one line
Notes
Notes: svn path=/head/; revision=297911
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/qscintilla/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-toolkits/qscintilla/Makefile b/x11-toolkits/qscintilla/Makefile
index dca7d56bca0f..db3b8070b897 100644
--- a/x11-toolkits/qscintilla/Makefile
+++ b/x11-toolkits/qscintilla/Makefile
@@ -71,7 +71,7 @@ PLIST_SUB+= LANG_RU=""
.else
PLIST_SUB+= LANG_RU="@comment "
.endif
-.if ${PORT_OPTIONS:MLANG_DE} && ${PORT_OPTIONS:MLANG_FR} && ${PORT_OPTIONS:MLANG_PTBR} && ${PORT_OPTIONS:MLANG_RU}
+.if !empty(PORT_OPTIONS:MLANG_DE) && !empty(PORT_OPTIONS:MLANG_FR) && !empty(PORT_OPTIONS:MLANG_PTBR) && !empty(PORT_OPTIONS:MLANG_RU)
PLIST_SUB+= TRANSLATIONS=""
.else
PLIST_SUB+= TRANSLATIONS="@comment "
@@ -117,7 +117,7 @@ do-install:
( cd ${WRKSRC} && \
${INSTALL_DATA} designer/libqscintillaplugin.so ${PLUGINDIR} )
.endif
-.if ${PORT_OPTIONS:MLANG_DE} || ${PORT_OPTIONS:MLANG_FR} || ${PORT_OPTIONS:MLANG_PTBR} || ${PORT_OPTIONS:MLANG_RU}
+.if !empty(PORT_OPTIONS:MLANG_DE) || !empty(PORT_OPTIONS:MLANG_FR) || !empty(PORT_OPTIONS:MLANG_PTBR) || !empty(PORT_OPTIONS:MLANG_RU)
${MKDIR} -m 0755 ${DATADIR}/translations
.endif
.if ${PORT_OPTIONS:MLANG_DE}