Date: Fri, 5 Jun 2015 16:18:54 +0000 (UTC) From: Mikhail Teterin <mi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388590 - head/devel/tcllib Message-ID: <201506051618.t55GIsfJ093321@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506051618.t55GIsfJ093321>