summaryrefslogtreecommitdiff
path: root/security/skip
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2003-11-13 12:54:57 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2003-11-13 12:54:57 +0000
commitf725dc8ef5848b5e69ebefdc7c1f1517f26643fb (patch)
tree61e738084a4bfbaac41e371a863552bfb8c6ed2a /security/skip
parentUse the FIND and XARGS macros introduced in bsd.port.mk 1.391. (diff)
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Notes
Notes: svn path=/head/; revision=93885
Diffstat (limited to 'security/skip')
-rw-r--r--security/skip/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/security/skip/Makefile b/security/skip/Makefile
index 49dad581c95f..078f760c5e5d 100644
--- a/security/skip/Makefile
+++ b/security/skip/Makefile
@@ -49,15 +49,15 @@ MAN4= skipd.conf.4 raw_keys.4
# Also, we remove all the "#pragma ident" lines that generate
# a bazillion warnings from the compiler.
post-patch:
- @find ${WRKSRC} -name '*.orig' -print | xargs ${RM}
+ @${FIND} ${WRKSRC} -name '*.orig' -print | ${XARGS} ${RM}
@cd ${WRKSRC}; \
- FILES=`find . -type f -print | xargs ${GREP} -l @@PREFIX@@`; \
+ FILES=`${FIND} . -type f -print | ${XARGS} ${GREP} -l @@PREFIX@@`; \
for FILE in $$FILES; do \
${SED} 's!@@PREFIX@@!${PREFIX}!g' < $$FILE > $$FILE.new ; \
${MV} $$FILE.new $$FILE; \
done; \
- FILES=`find . -type f -name '*.[cCh]' -print \
- | xargs ${GREP} -l '^#pragma ident'`; \
+ FILES=`${FIND} . -type f -name '*.[cCh]' -print \
+ | ${XARGS} ${GREP} -l '^#pragma ident'`; \
for FILE in $$FILES; do \
${SED} '/^#pragma ident/d' < $$FILE > $$FILE.new ; \
${MV} $$FILE.new $$FILE; \