summaryrefslogtreecommitdiff
path: root/distrib/sets/checkflist
blob: bb2fa1880db170fdc4a274d23020978224c0b858 (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

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