]> git.donarmstrong.com Git - debhelper.git/blob - dh_listpackages
Typo. Closes: #653339
[debhelper.git] / dh_listpackages
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_listpackages - list binary packages debhelper will act on
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Lib;
11
12 =head1 SYNOPSIS
13
14 B<dh_listpackages> [S<I<debhelper options>>]
15
16 =head1 DESCRIPTION
17
18 B<dh_listpackages> is a debhelper program that outputs a list of all binary
19 packages debhelper commands will act on. If you pass it some options, it
20 will change the list to match the packages other debhelper commands would
21 act on if passed the same options.
22
23 =cut
24
25 $dh{BLOCK_NOOP_WARNINGS}=1;
26 init();
27 inhibit_log();
28 print join("\n",@{$dh{DOPACKAGES}})."\n";
29
30 =head1 SEE ALSO
31
32 L<debhelper(7)>
33
34 This program is a part of debhelper.
35
36 =head1 AUTHOR
37
38 Joey Hess <joeyh@debian.org>
39
40 =cut