svn commit: r303171 - head/devel/kdesvn-kde4

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Aug 26 01:11:22 UTC 2012


Author: rakuco
Date: Sun Aug 26 01:11:21 2012
New Revision: 303171
URL: http://svn.freebsd.org/changeset/ports/303171

Log:
  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

Modified:
  head/devel/kdesvn-kde4/Makefile

Modified: head/devel/kdesvn-kde4/Makefile
==============================================================================
--- head/devel/kdesvn-kde4/Makefile	Sun Aug 26 00:55:44 2012	(r303170)
+++ head/devel/kdesvn-kde4/Makefile	Sun Aug 26 01:11:21 2012	(r303171)
@@ -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)



More information about the svn-ports-head mailing list