From d9af679efa65bf1b96a675d35d9be7475c39fa94 Mon Sep 17 00:00:00 2001 From: adamw Date: Mon, 1 Sep 2014 18:18:51 +0000 Subject: 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. --- devel/critcl/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'devel/critcl') diff --git a/devel/critcl/Makefile b/devel/critcl/Makefile index c2c11678e9c2..403ffbbb8308 100644 --- a/devel/critcl/Makefile +++ b/devel/critcl/Makefile @@ -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 -- cgit