diff options
author | Neil Blakey-Milner <nbm@FreeBSD.org> | 2001-04-02 10:37:33 +0000 |
---|---|---|
committer | Neil Blakey-Milner <nbm@FreeBSD.org> | 2001-04-02 10:37:33 +0000 |
commit | a8154cfead24755addabdb124633dd33c855c7e6 (patch) | |
tree | fb89052ded0622bd954831f6cdc6c8f825bb065f /Tools/scripts | |
parent | Steal the 'hmake' variable building from mkpinstall. This wasn't (diff) |
Be more specific in trying to exclude man pages - look for 'man/man',
not just 'man'. This makes the 'manage_*' from Zope work.
Notes
Notes:
svn path=/head/; revision=40742
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/mkptools/mkpinstall | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/mkptools/mkpinstall b/Tools/scripts/mkptools/mkpinstall index c97e5ed2ae94..54a24750cedf 100755 --- a/Tools/scripts/mkptools/mkpinstall +++ b/Tools/scripts/mkptools/mkpinstall @@ -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"); |