#!/usr/bin/perl -w
#
# Checks to make sure you are root.

BEGIN { push @INC, "debian", "/usr/share/debhelper" }
use Dh_Lib;

if ($< != 0) {
	error("You must run this as root.");
}
