diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-09-29 08:07:47 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-09-29 08:07:47 +0000 |
commit | e192667b15b8f0e87286ddfcfc7298e1d9342dea (patch) | |
tree | 0dc4a3b30902b2f47b536be78e219b125441c267 /www/apache13-modssl | |
parent | 21235fc28e9a76b3ba4673f6fc9c0313cb4e1727 (diff) | |
download | FreeBSD-ports-e192667b15b8f0e87286ddfcfc7298e1d9342dea.zip FreeBSD-ports-e192667b15b8f0e87286ddfcfc7298e1d9342dea.tar.gz |
find->${FIND},xargs->${XARGS}
PR: 40791
Submitted by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
Diffstat (limited to 'www/apache13-modssl')
-rw-r--r-- | www/apache13-modssl/Makefile | 2 |
1 files changed, 1 insertions, 1 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} \ |