diff options
author | heinz <heinz> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz> | 2004-01-27 00:53:10 +0000 |
commit | 022eb86624280ef9db72559a99f9253a3d003132 (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /security | |
parent | 1625c0b6c06f52d627a1188b73ab66598be1896e (diff) | |
download | pkgsrc-022eb86624280ef9db72559a99f9253a3d003132.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-sasl2/Makefile.common | 4 | ||||
-rw-r--r-- | security/netramet/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/security/cyrus-sasl2/Makefile.common b/security/cyrus-sasl2/Makefile.common index fe03c9d2bab..679aa8e34ae 100644 --- a/security/cyrus-sasl2/Makefile.common +++ b/security/cyrus-sasl2/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.11 2004/01/09 19:37:48 jlam Exp $ +# $NetBSD: Makefile.common,v 1.12 2004/01/27 00:53:10 heinz Exp $ # # This Makefile fragment should be included _below_ any SASL_PLUGIN # definition and _above_ any CONFIGURE_ARGS definitions. @@ -73,7 +73,7 @@ CONFIGURE_ARGS+= --without-pam # clean up a bit to help package maintainer produce patch files post-extract: ${_PKG_SILENT}${_PKG_DEBUG} \ - ${FIND} ${WRKSRC} -type f -name "*.orig" | ${XARGS} ${RM} -f + ${FIND} ${WRKSRC} -type f -name "*.orig" -print | ${XARGS} ${RM} -f # Left here as reference for patch makers... #pre-configure: diff --git a/security/netramet/Makefile b/security/netramet/Makefile index a110ef1a2c0..46d27c10c9f 100644 --- a/security/netramet/Makefile +++ b/security/netramet/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2002/03/22 03:48:18 itojun Exp $ +# $NetBSD: Makefile,v 1.4 2004/01/27 00:53:10 heinz Exp $ # DISTNAME= NeTraMet44 @@ -14,7 +14,7 @@ GNU_CONFIGURE= YES CONFIGURE_ARGS+=--without-x post-patch: - for i in `${FIND} ${WRKSRC} -name Makefile.in`; do \ + for i in `${FIND} ${WRKSRC} -name Makefile.in -print`; do \ ${SED} "s,CFLAGS=,CFLAGS+=,g" $$i > $$i.done; \ ${MV} $$i.done $$i; \ done |