#!/bin/sh
#
# $FreeBSD: ports/security/tcp_wrapper/scripts/configure,v 1.2 1999/08/31 01:51:55 peter Exp $
#

FILES="hosts_access.3 hosts_access.5 tcpd.8 tcpdchk.8 tcpdmatch.8"

cd ${WRKSRC}

for f in $FILES; do
	mv $f $f.bak &&
	sed <$f.bak >$f s+!!PREFIX!!+$PREFIX+g
done

