svn commit: r474500 - head/textproc/p5-SGMLSpm

Romain Tartière romain at FreeBSD.org
Thu Jul 12 10:29:34 UTC 2018


Author: romain
Date: Thu Jul 12 10:29:33 2018
New Revision: 474500
URL: https://svnweb.freebsd.org/changeset/ports/474500

Log:
  Fix build when EXAMPLES is unset
  
  This regression was introduced in r470918.
  
  EXAMPLES files are staged but not installed when the option is unset, so the
  EXAMPLESDIR directory must exist in all cases.
  
  DOCS is not affected so left untouched.

Modified:
  head/textproc/p5-SGMLSpm/Makefile

Modified: head/textproc/p5-SGMLSpm/Makefile
==============================================================================
--- head/textproc/p5-SGMLSpm/Makefile	Thu Jul 12 10:12:06 2018	(r474499)
+++ head/textproc/p5-SGMLSpm/Makefile	Thu Jul 12 10:29:33 2018	(r474500)
@@ -36,7 +36,7 @@ DOCS_INSTALL_TARGET=	docs install_html HTMLDIR=${STAGE
 pre-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 
-pre-install-EXAMPLES-on:
+pre-install:
 	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list