1997-08-05 08:36:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
1999-08-31 01:53:22 +00:00
|
|
|
# $FreeBSD$
|
1997-08-05 08:36:01 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
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
|
|
|
|
|