Home | History | Annotate | Line # | Download | only in sets
checkflist revision 1.1.1.1
      1  1.1  cgd #!/bin/csh -f
      2  1.1  cgd 
      3  1.1  cgd if (! $?DESTDIR) then
      4  1.1  cgd 	echo DESTDIR must be set
      5  1.1  cgd 	exit 1
      6  1.1  cgd endif
      7  1.1  cgd 
      8  1.1  cgd set fsdir=$DESTDIR
      9  1.1  cgd 
     10  1.1  cgd makeflist >! /tmp/_CHECK.$$
     11  1.1  cgd ( cd $fsdir ; find . \( -type d -o -type f -o -type l \) ) | sort | \
     12  1.1  cgd     diff /tmp/_CHECK.$$ -
     13  1.1  cgd /bin/rm -f /tmp/_CHECK.$$
     14