summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorheinz <heinz@pkgsrc.org>2004-01-27 00:53:10 +0000
committerheinz <heinz@pkgsrc.org>2004-01-27 00:53:10 +0000
commit18a916d5e6481b140ffb5e120e09d36645a44a11 (patch)
tree0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /misc
parentd84262f580a6d28b6b7bde5294039c4f6e0999df (diff)
downloadpkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.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"