summaryrefslogtreecommitdiff
path: root/textproc/nbsed
diff options
context:
space:
mode:
authortv <tv>2005-01-06 05:32:29 +0000
committertv <tv>2005-01-06 05:32:29 +0000
commit6084989c38f4b6a98d1295b87c32ae6167b306ef (patch)
tree3e0e17bdc7871a29a0ce9d23a71ea27bc88ac783 /textproc/nbsed
parent0aed1a8edcc2234fea37ecab988556e6f1631e97 (diff)
downloadpkgsrc-6084989c38f4b6a98d1295b87c32ae6167b306ef.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 'textproc/nbsed')
-rw-r--r--textproc/nbsed/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/nbsed/Makefile b/textproc/nbsed/Makefile
index b67dbcffe10..ef3e5ac914c 100644
--- a/textproc/nbsed/Makefile
+++ b/textproc/nbsed/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2004/08/27 03:45:08 jlam Exp $
+# $NetBSD: Makefile,v 1.10 2005/01/06 05:38:56 tv Exp $
DISTNAME= nbsed-20040821
CATEGORIES= textproc pkgtools
@@ -23,6 +23,6 @@ CONFIGURE_ARGS+= --program-transform-name="s,sed,nbsed,"
.endif
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.include "../../mk/bsd.pkg.mk"