svn commit: r388590 - head/devel/tcllib

Mikhail Teterin mi at FreeBSD.org
Fri Jun 5 16:18:54 UTC 2015


Author: mi
Date: Fri Jun  5 16:18:53 2015
New Revision: 388590
URL: https://svnweb.freebsd.org/changeset/ports/388590

Log:
  Rephrase the conditionals to avoid claims of malformity, that were reported
  by FreshPorts sanity checking. (I can not reproduce the problem here.)
  
  Notified by:	dvl

Modified:
  head/devel/tcllib/Makefile

Modified: head/devel/tcllib/Makefile
==============================================================================
--- head/devel/tcllib/Makefile	Fri Jun  5 16:14:20 2015	(r388589)
+++ head/devel/tcllib/Makefile	Fri Jun  5 16:18:53 2015	(r388590)
@@ -35,7 +35,7 @@ INSTALL_ARGS=	-pkgs -pkg-path ${STAGEDIR
 #
 # Man pages
 #
-.if !empty(${PORT_OPTIONS:MMANPAGES}) && !(defined(ALL_TARGET) && ${ALL_TARGET:Mcritcl})
+.if !empty(${PORT_OPTIONS:MMANPAGES}) && !(defined(ALL_TARGET) && !empty(${ALL_TARGET:Mcritcl}))
 ALL_TARGET+=	nroff-doc
 INSTALL_ARGS+=	-nroff-path ${STAGEDIR}${PREFIX}/man/mann
 PLIST_SUB+=	MAN=""
@@ -47,7 +47,7 @@ PLIST_SUB+=	MAN="@comment "
 #
 # HTML documentation
 #
-.if !empty(${PORT_OPTIONS:MDOCS}) && !(defined(ALL_TARGET) && ${ALL_TARGET:Mcritcl})
+.if !empty(${PORT_OPTIONS:MDOCS}) && !(defined(ALL_TARGET) && !empty(${ALL_TARGET:Mcritcl}))
 ALL_TARGET+=	html-doc
 INSTALL_ARGS+=	-html-path ${STAGEDIR}${DOCSDIR}
 .else


More information about the svn-ports-all mailing list