summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorheinz <heinz>2004-01-27 00:53:10 +0000
committerheinz <heinz>2004-01-27 00:53:10 +0000
commitc4a746650ec3ce51092f46b30440ee814f6dbcaa (patch)
tree0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /misc
parentd8e3f2f0d5830a73b60fbd37e5d63bfc0282c3c6 (diff)
downloadpkgsrc-c4a746650ec3ce51092f46b30440ee814f6dbcaa.tar.gz
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'misc')
-rw-r--r--misc/linuxls/Makefile4
-rw-r--r--misc/tds/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/misc/linuxls/Makefile b/misc/linuxls/Makefile
index 7fa1bf212c7..e8b8e45798c 100644
--- a/misc/linuxls/Makefile
+++ b/misc/linuxls/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2002/05/31 09:14:50 uebayasi Exp $
+# $NetBSD: Makefile,v 1.13 2004/01/27 00:53:11 heinz Exp $
#
DISTNAME= fileutils-3.12
@@ -20,7 +20,7 @@ NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL
GNU_CONFIGURE= yes
post-patch:
- @${FIND} ${WRKSRC} -name Makefile.in | \
+ @${FIND} ${WRKSRC} -name Makefile.in -print | \
while read f; do \
${CP} $$f $${f}.orig; \
${SED} -e 's|^\(etcdir = \).*$$|\1${PKG_SYSCONFDIR}|g' $${f}.orig >$$f; \
diff --git a/misc/tds/Makefile b/misc/tds/Makefile
index 69ef4d31f48..8fb19aaa32e 100644
--- a/misc/tds/Makefile
+++ b/misc/tds/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2003/07/21 17:01:27 martti Exp $
+# $NetBSD: Makefile,v 1.9 2004/01/27 00:53:11 heinz Exp $
#
DISTNAME= tds-1.4.2
@@ -15,6 +15,6 @@ GNU_CONFIGURE= YES
NO_BUILD= YES
post-patch:
- @${FIND} ${WRKSRC} -type f -name '*.orig' | ${XARGS} ${RM} -f
+ @${FIND} ${WRKSRC} -type f -name '*.orig' -print | ${XARGS} ${RM} -f
.include "../../mk/bsd.pkg.mk"