diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/apache13-modssl/Makefile | 2 | ||||
-rw-r--r-- | www/bkmrkconv/Makefile | 2 | ||||
-rw-r--r-- | www/grail/Makefile | 1 | ||||
-rw-r--r-- | www/py-HTMLgen/Makefile | 1 |
4 files changed, 2 insertions, 4 deletions
diff --git a/www/apache13-modssl/Makefile b/www/apache13-modssl/Makefile index 41e467a..584e7e16 100644 --- a/www/apache13-modssl/Makefile +++ b/www/apache13-modssl/Makefile @@ -153,7 +153,7 @@ post-patch: @${PERL} -pi -e 's|-print|-print0|;s|xargs|xargs -0|' \ ${WRKSRC}/Makefile.tmpl @cd ${WRKSRC} \ - && find . -type f -name "*.orig" -print | xargs ${RM} -f + && ${FIND} . -type f -name "*.orig" -print | ${XARGS} ${RM} -f post-build: @cd ${WRKSRC} \ diff --git a/www/bkmrkconv/Makefile b/www/bkmrkconv/Makefile index f11fea3..2fc9965 100644 --- a/www/bkmrkconv/Makefile +++ b/www/bkmrkconv/Makefile @@ -16,7 +16,7 @@ USE_PERL5= yes NO_BUILD= yes post-patch: - @find ${WRKSRC} -name '*.pl' | xargs ${PERL} -pi -e \ + @${FIND} ${WRKSRC} -name '*.pl' | ${XARGS} ${PERL} -pi -e \ 's|/usr/bin/perl|${PERL}|g ; \ s|%%PREFIX%%|${PREFIX}|g' diff --git a/www/grail/Makefile b/www/grail/Makefile index 6745eeb..844106a 100644 --- a/www/grail/Makefile +++ b/www/grail/Makefile @@ -24,7 +24,6 @@ GRAILDIR= ${PREFIX}/${GRAILSUBDIR} DIRS_CMD= ${SED} -e '/^@dirrm/bok' -e 'D' -e ':ok' -e 's,@dirrm ,,' < ${PLIST} FILES_CMD= ${SED} -e '/^share\//bok' -e 'D' -e ':ok' -e 's,${GRAILSUBDIR}/,,' < ${PLIST} -FIND?=find PYTHON?=python do-build: diff --git a/www/py-HTMLgen/Makefile b/www/py-HTMLgen/Makefile index 63c7b32..6ccce24 100644 --- a/www/py-HTMLgen/Makefile +++ b/www/py-HTMLgen/Makefile @@ -19,7 +19,6 @@ WRKSRC= ${WRKDIR}/HTMLgen PLIST= ${WRKDIR}/PLIST DOCDIR= ${PREFIX}/share/doc/HTMLgen -FIND?= find pre-install: @${CP} ${PKGDIR}/pkg-plist ${PLIST} |