]> git.donarmstrong.com Git - debhelper.git/blob - dh_listpackages
r420: big monsta changes
[debhelper.git] / dh_listpackages
1 #!/usr/bin/perl -w
2 #
3 # Output a list of all packages debhelper will act on.
4
5 use strict;
6 use Debian::Debhelper::Dh_Lib;
7 init();
8 print join("\n",@{$dh{DOPACKAGES}})."\n";
9