blob: 89c0d80354b3b19f27c5d2506c02dacd80fb523f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#!/bin/sh
#
# $NetBSD: makeobsolete,v 1.23 2004/01/03 02:38:58 lukem Exp $
#
# Print out the obsolete files for a set
# Usage: makeobsolete [-b] [-x] [-a arch] [-m machine] [-s setsdir] \
# [-t target] [setname ...]
#
. $(dirname $0)/sets.subr
lists=$nlists
target=./dist
obsolete=1
usage()
{
cat 1>&2 <<USAGE
Usage: ${0##*/} [-a arch] [-m machine] [-s setsdir] [setname ...]
-b make netbsd + x11 lists
-x only make x11 lists
-a arch set arch (e.g, m68k, mips, powerpc) [$MACHINE_ARCH]
-m machine set machine (e.g, amiga, i386, macppc) [$MACHINE]
-s setsdir directory to find sets [$setd]
-t target target directory [$target]
[setname ...] sets to build
USAGE
exit 1
}
while getopts bxa:m:s:t: ch; do
case ${ch} in
b)
lists="$xlists $nlists"
;;
x)
lists="$xlists"
;;
a)
MACHINE_ARCH=${OPTARG}
MACHINE_CPU=$(arch_to_cpu ${OPTARG})
;;
m)
MACHINE=${OPTARG}
;;
s)
setsdir=${OPTARG}
;;
t)
target=${OPTARG}
;;
*)
usage
;;
esac
done
shift $((${OPTIND} - 1))
if [ -n "$1" ]; then
lists="$*"
fi
if [ ! -d $target ] ; then
echo "target directory [$target] doesn't exist"
exit 1
fi
for setname in $lists; do
file=$target/${setname}
list_set_files $setname | awk '{print $1}' | sort -ru > $file
if [ ! -s $file ] ; then
rm $file
fi
done
|