diff options
author | Daniel Harris <dannyboy@FreeBSD.org> | 2000-12-23 00:56:26 +0000 |
---|---|---|
committer | Daniel Harris <dannyboy@FreeBSD.org> | 2000-12-23 00:56:26 +0000 |
commit | a3ed93a236bb7f82c705b0abb045df02a4afa06c (patch) | |
tree | 8962898ed34ac9b8d7d7d514d96166f551146071 /mail/postfix24/scripts | |
parent | e7053e978268c5cc53dc59fbf4542faf7f63389b (diff) | |
download | ports-a3ed93a236bb7f82c705b0abb045df02a4afa06c.tar.gz ports-a3ed93a236bb7f82c705b0abb045df02a4afa06c.zip |
Update to 19991231-pl13.
PR: 23696
Submitted by: MAINTAINER
Notes
Notes:
svn path=/head/; revision=36257
Diffstat (limited to 'mail/postfix24/scripts')
-rw-r--r-- | mail/postfix24/scripts/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/postfix24/scripts/configure b/mail/postfix24/scripts/configure index c96a3f3a2faa..90b835702fd7 100644 --- a/mail/postfix24/scripts/configure +++ b/mail/postfix24/scripts/configure @@ -19,7 +19,7 @@ for f in ${MAN8} ; do soelim man8/$f.bak | sed s+!!PREFIX!!+$PREFIX+g >man8/$f done -for f in `grep -r "\!\!PREFIX\!\!" ${WRKSRC} | cut -f 1 -d ':' | uniq` ; do \ +for f in `find ${WRKSRC} | xargs grep -l '\!\!PREFIX\!\!' ` ; do \ mv $f $f.orig && sed s+!!PREFIX!!+$PREFIX+g < $f.orig > $f && \ rm $f.orig done |