diff options
author | tv <tv@pkgsrc.org> | 2005-01-06 05:32:29 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-01-06 05:32:29 +0000 |
commit | 049d18c5835d62b6eb9c1cf77d2c9701a08dc17c (patch) | |
tree | 3e0e17bdc7871a29a0ce9d23a71ea27bc88ac783 /devel/bcc | |
parent | 3c19654e848a8fe6468ed60c40874a2e79897273 (diff) | |
download | pkgsrc-049d18c5835d62b6eb9c1cf77d2c9701a08dc17c.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/Makefile | 12 |
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" |