#!/bin/sh
#
# $FreeBSD: ports/mail/postfix-current/scripts/configure,v 1.5 2000/12/02 20:28:44 dwhite Exp $

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
