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 | 76b643166d9495f68c96d8e05e2c25260619fae3 (patch) | |
tree | 3e0e17bdc7871a29a0ce9d23a71ea27bc88ac783 /pkgtools/mtree | |
parent | 8b1c0188c99553d662105ae5bcd623e3c400a042 (diff) | |
download | pkgsrc-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 'pkgtools/mtree')
-rw-r--r-- | pkgtools/mtree/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/mtree/Makefile b/pkgtools/mtree/Makefile index d4942277bee..0938f5b4e79 100644 --- a/pkgtools/mtree/Makefile +++ b/pkgtools/mtree/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2004/08/27 02:19:44 schmonz Exp $ +# $NetBSD: Makefile,v 1.14 2005/01/06 05:32:29 tv Exp $ # DISTNAME= mtree-20040722 @@ -23,7 +23,7 @@ PKG_PRESERVE= # defined .include "../../mk/bsd.prefs.mk" do-extract: - @${CP} -Rp ${FILESDIR} ${WRKSRC} + @${CP} -R ${FILESDIR} ${WRKSRC} .if defined(LIBNBCOMPAT_STYLE) && (${LIBNBCOMPAT_STYLE} == "inplace") . include "../../pkgtools/libnbcompat/inplace.mk" |