summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2012-08-26 01:11:21 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2012-08-26 01:11:21 +0000
commitdd476fce653c5c1f588ff176db789f66ad1a5701 (patch)
treeaa38f8a0f9a5f3dba3c075d93ac2fce39506dd6c
parent- Update to 1.6.0 (diff)
Fix reversal in the condition check introduced in r303170.
We need to check if DOCS is _not_ defined. Hat tips to avilla@ for noticing the mistake. PR: ports/170828
Notes
Notes: svn path=/head/; revision=303171
-rw-r--r--devel/kdesvn-kde4/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/kdesvn-kde4/Makefile b/devel/kdesvn-kde4/Makefile
index ac6f28b97905..6e05893c258c 100644
--- a/devel/kdesvn-kde4/Makefile
+++ b/devel/kdesvn-kde4/Makefile
@@ -40,7 +40,7 @@ PLIST_SUB+= NLS="@comment "
post-patch:
${RM} ${WRKSRC}/src/kiosvn/svn*.protocol
-.if ${PORT_OPTIONS:MDOCS}
+.if empty(PORT_OPTIONS:MDOCS)
${ECHO} "ADD_SUBDIRECTORY(man)" > ${WRKSRC}/doc/CMakeLists.txt
.endif
.if empty(PORT_OPTIONS:MNLS)