diff options
author | tv <tv> | 2005-01-06 05:32:29 +0000 |
---|---|---|
committer | tv <tv> | 2005-01-06 05:32:29 +0000 |
commit | 2e70faa486c0d3b473cd82d89e10c97818b3f6ee (patch) | |
tree | 3e0e17bdc7871a29a0ce9d23a71ea27bc88ac783 /pkgtools/libkver | |
parent | 7ee37562d140b9a9347b84b918b1a0908ee5fd16 (diff) | |
download | pkgsrc-2e70faa486c0d3b473cd82d89e10c97818b3f6ee.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/libkver')
-rw-r--r-- | pkgtools/libkver/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/libkver/Makefile b/pkgtools/libkver/Makefile index e6406b4cf27..dcc138067f0 100644 --- a/pkgtools/libkver/Makefile +++ b/pkgtools/libkver/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2004/07/06 09:45:38 cube Exp $ +# $NetBSD: Makefile,v 1.12 2005/01/06 05:32:29 tv Exp $ DISTNAME= libkver-${VERSION} CATEGORIES= pkgtools @@ -45,6 +45,6 @@ INSTALLATION_DIRS+= sbin .endif do-extract: - @${CP} -Rp ${FILESDIR} ${WRKSRC} + @${CP} -R ${FILESDIR} ${WRKSRC} .include "../../mk/bsd.pkg.mk" |