summaryrefslogtreecommitdiff
path: root/dh_testdir
diff options
context:
space:
mode:
Diffstat (limited to 'dh_testdir')
-rwxr-xr-xdh_testdir15
1 files changed, 0 insertions, 15 deletions
diff --git a/dh_testdir b/dh_testdir
deleted file mode 100755
index 6d9258db..00000000
--- a/dh_testdir
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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/share/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?");
- }
-}