]> git.donarmstrong.com Git - debhelper.git/blob - dh_listpackages
r128: Initial revision
[debhelper.git] / dh_listpackages
1 #!/usr/bin/perl -w
2 #
3 # Output a list of all packages debhelper will act on.
4
5 BEGIN { push @INC, "debian", "/usr/lib/debhelper" }
6 use Dh_Lib;
7 init();
8 print join("\n",@{$dh{DOPACKAGES}})."\n";