diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
commit | f725dc8ef5848b5e69ebefdc7c1f1517f26643fb (patch) | |
tree | 61e738084a4bfbaac41e371a863552bfb8c6ed2a /security/skip | |
parent | Use 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.
Diffstat (limited to 'security/skip')
-rw-r--r-- | security/skip/Makefile | 8 |
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; \ |