1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/mail/postfix27/scripts/fix-files-list
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

13 lines
345 B
Bash

#!/bin/sh
# need to fixup ${PREFIX}/etc/postfix/postfix-files to indicate compressed
# man pages, since the ports software compresses them later, and if we
# run post-install it will complain about missing files
# (script from Simon J. Mudd)
ed ${PREFIX}/etc/postfix/postfix-files <<EOF || exit 1
%s/\(\/man[158]\/.*\.[158]\):/\1.gz:/
w
q
EOF