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 /pkgtools/libnbcompat | |
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 'pkgtools/libnbcompat')
-rw-r--r-- | pkgtools/libnbcompat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/libnbcompat/Makefile b/pkgtools/libnbcompat/Makefile index ff0d72674f5..49f0aac3500 100644 --- a/pkgtools/libnbcompat/Makefile +++ b/pkgtools/libnbcompat/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2004/10/24 11:18:33 grant Exp $ +# $NetBSD: Makefile,v 1.44 2005/01/06 05:32:29 tv Exp $ # # NOTE: If you update this package, it is *mandatory* that you update # pkgsrc/pkgtools/libnbcompat/files/README to reflect the actual @@ -26,6 +26,6 @@ PKG_CREATE= PKG_DBDIR=${_PKG_DBDIR} ${PKG_CREATE_CMD} PKG_DELETE= PKG_DBDIR=${_PKG_DBDIR} ${PKG_DELETE_CMD} do-extract: - @${CP} -Rp ${FILESDIR} ${WRKSRC} + @${CP} -R ${FILESDIR} ${WRKSRC} .include "../../mk/bsd.pkg.mk" |