summaryrefslogtreecommitdiff
path: root/dh_testdir
blob: 0cb95c1dd1ed52a375551ebf052a8db2cc30e5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl -w
#
# Checks to make sure we are building the package in the right directory.
# Tests for the existance of debian/control, and for the existance
# of any other files you specify on the command line.

BEGIN { push @INC, "debian", "/usr/lib/debhelper" }
use Dh_Lib;
init();

foreach $file ('debian/control',@ARGV) {
	if (! -e $file) {
		error("\"$file\" not found. Are you sure you are in the correct directory?");
	}
}