Add 'tools' to the list of tarballs to be extracted when 'all' is

specified as the distribution.

PR:		18927
Submitted by:	Stephen J. Roznowski <sjr@home.net>
This commit is contained in:
John W. De Boskey 2000-06-13 03:05:56 +00:00
parent 3e0f74ccaf
commit 80585f3426
1 changed files with 2 additions and 2 deletions

View File

@ -9,14 +9,14 @@ if [ $# -lt 1 ]; then
echo "possible subcomponents are:"
echo
echo "base bin contrib etc games gnu include lib libexec"
echo "release sbin share sys ubin usbin"
echo "release sbin share sys tools ubin usbin"
echo
echo "You may also specify all to extract all subcomponents."
exit 1
fi
if [ "$1" = "all" ]; then
dists="base bin contrib etc games gnu include lib libexec release sbin share sys ubin usbin"
dists="base bin contrib etc games gnu include lib libexec release sbin share sys tools ubin usbin"
else
dists="$*"
fi