freebsd-ports/mail/postfix21/scripts/configure
David W. Chapman Jr. 38a2f47cdc Update to 1.1.2 (yes they are finally using versions)
Submitted by:	Vivek Khera
2002-01-30 19:59:40 +00:00

8 lines
183 B
Bash

#!/bin/sh
#
# $FreeBSD$
for f in `find ${WRKSRC} -type f | xargs grep -l '\!\!PREFIX\!\!' ` ; do \
mv $f $f.orig && sed s+!!PREFIX!!+$PREFIX+g < $f.orig > $f && \
rm $f.orig
done