summaryrefslogtreecommitdiff
path: root/distrib/sets/checkflist
blob: b028bf410279f774710925116a4759470623700e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/csh -f

if (! $?DESTDIR) then
	echo DESTDIR must be set
	exit 1
endif

set fsdir=$DESTDIR

./makeflist >! /tmp/_CHECK.$$
( cd $fsdir ; find . \( -type d -o -type f -o -type l \) ) | sort | \
    diff /tmp/_CHECK.$$ -
/bin/rm -f /tmp/_CHECK.$$