summaryrefslogtreecommitdiff
path: root/dh_listpackages
blob: ec9d533cba52378dcfff0ec5e603687ae36949bf (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl -w
#
# Output a list of all packages debhelper will act on.

use strict;
use Debian::Debhelper::Dh_Lib;
init();
print join("\n",@{$dh{DOPACKAGES}})."\n";