blob: 72c17bccca3cbe09342834b46439ecbcc094b3e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/perl -w
#
# This program is deprecated, but left in the package for backwards
# compatability. It simply calls the 3 programs that replaced it.
BEGIN { push @INC, "debian", "/usr/share/debhelper" }
use Dh_Lib;
$ENV{PATH}="debian:$ENV{PATH}:/usr/share/debhelper";
warning("use of this program is deprecated, see man page.");
doit("dh_installdeb",@ARGV);
doit("dh_shlibdeps",@ARGV);
doit("dh_gencontrol",@ARGV);
|