xref: /openbsd/distrib/sets/checkflist (revision 78b63d65)
1#!/bin/csh -f
2#	$OpenBSD: checkflist,v 1.3 2000/03/01 22:10:08 todd Exp $
3
4
5if (! $?DESTDIR) then
6	echo DESTDIR must be set
7	exit 1
8endif
9
10set fsdir=$DESTDIR
11
12csh makeflist >! /tmp/_CHECK.$$
13( cd $fsdir ; find . \( -type d -o -type f -o -type l \) ) | sort | \
14    diff /tmp/_CHECK.$$ -
15/bin/rm -f /tmp/_CHECK.$$
16