summaryrefslogtreecommitdiff
path: root/devel/bcc
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2005-01-06 05:32:29 +0000
committertv <tv@pkgsrc.org>2005-01-06 05:32:29 +0000
commit76b643166d9495f68c96d8e05e2c25260619fae3 (patch)
tree3e0e17bdc7871a29a0ce9d23a71ea27bc88ac783 /devel/bcc
parent8b1c0188c99553d662105ae5bcd623e3c400a042 (diff)
downloadpkgsrc-76b643166d9495f68c96d8e05e2c25260619fae3.tar.gz
Don't "cp -p" for *source* files. Builds are usually done as an unprivileged
user, so it's not nice to try to use an option that will try to chown if the repository isn't owned by the builder. (Some OS's do in fact cause an error when the chown in "cp -p" fails.)
Diffstat (limited to 'devel/bcc')
-rw-r--r--devel/bcc/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/devel/bcc/Makefile b/devel/bcc/Makefile
index a94f0b2d5bb..2496362a5b1 100644
--- a/devel/bcc/Makefile
+++ b/devel/bcc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2003/07/17 21:29:39 grant Exp $
+# $NetBSD: Makefile,v 1.10 2005/01/06 05:36:28 tv Exp $
# FreeBSD Id: Makefile,v 1.6 1996/11/18 11:22:35 asami Exp
#
@@ -17,10 +17,10 @@ do-configure:
${RM} -f ${WRKSRC}/as/typeconv.o
${MV} ${WRKSRC}/bcc ${WRKSRC}/bcc-cc1
${MKDIR} ${WRKSRC}/bcc
- ${CP} -p ${FILESDIR}/Makefile.bcc ${WRKSRC}/bcc/Makefile
- ${CP} -p ${FILESDIR}/ld86.1 ${WRKSRC}/ld/
- ${CP} -p ${FILESDIR}/as86.1 ${WRKSRC}/as/
- ${CP} -p ${FILESDIR}/bcc.1 ${WRKSRC}/bcc/
- ${CP} -p ${FILESDIR}/bcc-cc1.1 ${WRKSRC}/bcc-cc1/
+ ${CP} ${FILESDIR}/Makefile.bcc ${WRKSRC}/bcc/Makefile
+ ${CP} ${FILESDIR}/ld86.1 ${WRKSRC}/ld/
+ ${CP} ${FILESDIR}/as86.1 ${WRKSRC}/as/
+ ${CP} ${FILESDIR}/bcc.1 ${WRKSRC}/bcc/
+ ${CP} ${FILESDIR}/bcc-cc1.1 ${WRKSRC}/bcc-cc1/
.include "../../mk/bsd.pkg.mk"