#!/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/lib/debhelper" } use Dh_Lib; $ENV{PATH}="debian:$ENV{PATH}:/usr/lib/debhelper"; warning("use of this program is deprecated, see man page."); doit("dh_installdeb",@ARGV); doit("dh_shlibdeps",@ARGV); doit("dh_gencontrol",@ARGV);