diff options
author | sf <sf@FreeBSD.org> | 2002-01-23 06:29:24 +0800 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2002-01-23 06:29:24 +0800 |
commit | f1d2516f39e1322f80021e8cd591506e736f65db (patch) | |
tree | f830fce3fd8149997c1f544cb1abf5c22b51cbe6 /www | |
parent | 7f348f540c2446654a8068ff0c9c624b014a19da (diff) | |
download | freebsd-ports-gnome-f1d2516f39e1322f80021e8cd591506e736f65db.tar.gz freebsd-ports-gnome-f1d2516f39e1322f80021e8cd591506e736f65db.tar.zst freebsd-ports-gnome-f1d2516f39e1322f80021e8cd591506e736f65db.zip |
use xargs -0 to avoid 'unterminated quote' error at ${PREFIX}/share/doc.
PR: 34143
Submitted by: Peter Radavich <peter@hungry.com>
Diffstat (limited to 'www')
-rw-r--r-- | www/apache13-modssl/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/www/apache13-modssl/Makefile b/www/apache13-modssl/Makefile index 7754e0cfa87b..bcb5746b0ccc 100644 --- a/www/apache13-modssl/Makefile +++ b/www/apache13-modssl/Makefile @@ -100,6 +100,8 @@ pre-patch: && ./configure --with-apache=../${DISTNAME} --expert 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 |