#!/bin/sh

# bug 128402, 128494
# check that the package is lintian clean

. defaults

lintian -i $PACKAGE
if [ $? -ne 0 ]; then
	echo $0 FAILED
	exit 1
fi
exit 0
