diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-09-29 16:07:47 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-09-29 16:07:47 +0800 |
commit | e192667b15b8f0e87286ddfcfc7298e1d9342dea (patch) | |
tree | 0dc4a3b30902b2f47b536be78e219b125441c267 /www | |
parent | 21235fc28e9a76b3ba4673f6fc9c0313cb4e1727 (diff) | |
download | freebsd-ports-gnome-e192667b15b8f0e87286ddfcfc7298e1d9342dea.tar.gz freebsd-ports-gnome-e192667b15b8f0e87286ddfcfc7298e1d9342dea.tar.zst freebsd-ports-gnome-e192667b15b8f0e87286ddfcfc7298e1d9342dea.zip |
find->${FIND},xargs->${XARGS}
PR: 40791
Submitted by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
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 41e467a09a61..584e7e16ce34 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 f11fea346925..2fc996512cab 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 6745eeb36db8..844106a33208 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 63c7b32cca03..6ccce245705e 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} |