Split section 6 catpages/manpages out into games dist.

This commit is contained in:
Jordan K. Hubbard 1997-07-02 08:59:00 +00:00
parent b14d8277cc
commit 48084fdd6a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27170
2 changed files with 16 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.310 1997/06/28 16:24:09 jkh Exp $
# $Id: Makefile,v 1.311 1997/06/29 18:07:01 jkh Exp $
#
# make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ]
#
@ -29,7 +29,7 @@ BUILDNAME=${BASE}-${DATE}-SNAP
# BIN_DISTS are special in that they get full /etc installation sets.
#
COMPAT_DISTS?= compat1x compat20 compat21
OTHER_DISTS?= games manpages catpages proflibs dict info doc
OTHER_DISTS?= manpages catpages games proflibs dict info doc
CRYPTO_DISTS?= krb des
BIN_DISTS?= bin
DISTRIBUTIONS?= ${BIN_DISTS} ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS}

View File

@ -18,3 +18,17 @@ if [ -d ${RD}/trees/bin/var/games ]; then
tar -xf - -C ${RD}/trees/games/var/games &&
rm -rf ${RD}/trees/bin/var/games;
fi
if [ -d ${RD}/trees/manpages/usr/share/man/man6 ]; then
mkdir -p ${RD}/trees/games/usr/share/man/man6
tar -cf - -C ${RD}/trees/manpages/usr/share/man/man6 . |
tar -xf - -C ${RD}/trees/games/usr/share/man/man6 &&
rm -rf ${RD}/trees/manpages/usr/share/man/man6
fi
if [ -d ${RD}/trees/catpages/usr/share/man/cat6 ]; then
mkdir -p ${RD}/trees/games/usr/share/man/cat6
tar -cf - -C ${RD}/trees/catpages/usr/share/man/cat6 . |
tar -xf - -C ${RD}/trees/games/usr/share/man/cat6 &&
rm -rf ${RD}/trees/catpages/usr/share/man/cat6
fi