mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
15 lines
187 B
Plaintext
15 lines
187 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
|
||
|
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
|
||
|
|