summaryrefslogtreecommitdiff
path: root/net
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 /net
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 'net')
-rw-r--r--net/mppe-lkm/Makefile4
-rw-r--r--net/tnftp/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/net/mppe-lkm/Makefile b/net/mppe-lkm/Makefile
index 6b9aef92b7f..1a293d7b4b0 100644
--- a/net/mppe-lkm/Makefile
+++ b/net/mppe-lkm/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2005/01/02 02:52:56 cube Exp $
+# $NetBSD: Makefile,v 1.2 2005/01/06 05:37:21 tv Exp $
DISTNAME= kernel_ppp_mppe-0.0.4-src
PKGNAME= mppe-lkm-0.0.4
@@ -19,7 +19,7 @@ KPM_SRC= ${WRKDIR}/${DISTNAME:C/-src$//}
INSTALLATION_DIRS= lkm
post-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
@${CHMOD} -R u+w ${KPM_SRC}
@${CP} -p ${KPM_SRC}/ppp-comp-local.h ${KPM_SRC}/ppp_mppe_compress.c \
${WRKSRC}
diff --git a/net/tnftp/Makefile b/net/tnftp/Makefile
index 6620f4fe3c2..7ae40abd6d2 100644
--- a/net/tnftp/Makefile
+++ b/net/tnftp/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2005/01/04 23:48:06 lukem Exp $
+# $NetBSD: Makefile,v 1.11 2005/01/06 05:38:56 tv Exp $
#
DISTNAME= tnftp-20050103
@@ -40,6 +40,6 @@ OPSYSVARS+= MAKE_ENV
MAKE_ENV.SunOS+= CPPFLAGS=""
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.include "../../mk/bsd.pkg.mk"