Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Sep 2014 18:18:52 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r366923 - head/devel/critcl
Message-ID:  <201409011818.s81IIqTY076803@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409011818.s81IIqTY076803>