blob: 3ce48e0676d79d2309768256b782e8e83565f4b9 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/perl -w
#
# Output a list of all packages debhelper will act on.
BEGIN { push @INC, "debian", "/usr/share/debhelper" }
use Dh_Lib;
init();
print join("\n",@{$dh{DOPACKAGES}})."\n";
|