NetBSD/distrib/sets/checkflist

20 lines
421 B
Bash
Executable File

#! /bin/sh --
#
# $NetBSD: checkflist,v 1.4 1997/10/28 13:35:23 veego Exp $
#
# Verify output of makeflist against contents of $DESTDIR.
[ "$DESTDIR" ] || {
echo DESTDIR must be set
exit 1
}
if [ "$1" = "-x11" ]; then
sh makeflist -x11 > /tmp/_CHECK.$$
else
sh makeflist > /tmp/_CHECK.$$
fi
( cd $DESTDIR ; find . \( -type d -o -type f -o -type l \) ) | sort | \
diff /tmp/_CHECK.$$ -
/bin/rm -f /tmp/_CHECK.$$