svn commit: r366923 - head/devel/critcl

Adam Weinberger adamw at FreeBSD.org
Mon Sep 1 18:18:52 UTC 2014


Author: adamw
Date: Mon Sep  1 18:18:51 2014
New Revision: 366923
URL: http://svnweb.freebsd.org/changeset/ports/366923
QAT: https://qat.redports.org/buildarchive/r366923/

Log:
  Wrap compound statements and use '.' instead of '\*' in COPYTREE_SHARE.
  The underlying problem that caused the build failures (tcl modules) has
  already been fixed, but the problem exposed another failure when \* was
  used to match nothing.

Modified:
  head/devel/critcl/Makefile

Modified: head/devel/critcl/Makefile
==============================================================================
--- head/devel/critcl/Makefile	Mon Sep  1 18:16:21 2014	(r366922)
+++ head/devel/critcl/Makefile	Mon Sep  1 18:18:51 2014	(r366923)
@@ -34,12 +34,12 @@ post-patch:
 do-install:
 .if ${PORT_OPTIONS:MDOCS}
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
-	cd ${WRKSRC} && ${TCLSH} build.tcl doc
-	cd ${WRKSRC}/embedded/www && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}
+	(cd ${WRKSRC} && ${TCLSH} build.tcl doc)
+	(cd ${WRKSRC}/embedded/www && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
 .endif
-	cd ${WRKSRC} && ${TCLSH} build.tcl install ${STAGEDIR}${PREFIX}/lib
+	(cd ${WRKSRC} && ${TCLSH} build.tcl install ${STAGEDIR}${PREFIX}/lib)
 
 regression-test:
-	cd ${WRKSRC} && ${TCLSH} test/all.tcl
+	(cd ${WRKSRC} && ${TCLSH} test/all.tcl)
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list