1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Be more specific in trying to exclude man pages - look for 'man/man',

not just 'man'.  This makes the 'manage_*' from Zope work.
This commit is contained in:
Neil Blakey-Milner 2001-04-02 10:37:33 +00:00
parent 029193aa5d
commit a8154cfead
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40742

View File

@ -67,7 +67,7 @@ my ($mtreedist) = "/etc/mtree/BSD.local.dist";
my ($redest) = "mtree -d -f $mtreedist -r -U -p $predir";
my ($ff) = "(cd $predir && find . ! -type d | cut -d/ -f2- | grep -v man | sort)";
my ($ff) = "(cd $predir && find . ! -type d | cut -d/ -f2- | grep -v man/man | sort)";
my ($fd) = "(cd $predir && find . -type d | cut -d/ -f2- | grep -v '^\.\$'| sort)";
system("mkdir $tmpdir");