Date: Mon, 22 Jun 2015 23:43:53 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390346 - head/devel/cdk Message-ID: <201506222343.t5MNhrDD001282@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Mon Jun 22 23:43:53 2015 New Revision: 390346 URL: https://svnweb.freebsd.org/changeset/ports/390346 Log: Speed up a bit copying the files Modified: head/devel/cdk/Makefile Modified: head/devel/cdk/Makefile ============================================================================== --- head/devel/cdk/Makefile Mon Jun 22 23:42:35 2015 (r390345) +++ head/devel/cdk/Makefile Mon Jun 22 23:43:53 2015 (r390346) @@ -37,7 +37,8 @@ post-install: .if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}; \ - ${FIND} cli demos examples | ${PAX} -rw ${STAGEDIR}${EXAMPLESDIR} + ${FIND} cli demos examples ! -type d \ + | ${PAX} -rw ${STAGEDIR}${EXAMPLESDIR} .endif .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506222343.t5MNhrDD001282>