#!/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";
