1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/mail/postfix1/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

9 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