Fail when /etc/binary_sizes.$mode does not exist.

This commit is contained in:
Philip Homburg 2006-03-17 15:25:21 +00:00
parent 64a9d53b12
commit d2e0cbc872

View file

@ -17,5 +17,8 @@ if [ -f $t ]
then cat "$t" | while read line
do awk '{ print "chmem =" $2 " " $1 " >/dev/null 2>&1 "}'
done | /bin/sh
else
echo "$0: $t does not exist" >&2
exit 1
fi
exit 0