diff options
author | joey <joey> | 1999-08-17 05:02:07 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:02:07 +0000 |
commit | 75275ded89f0b456e7e396008af153d26bb35626 (patch) | |
tree | 6cd498453f87dd7f0c091d5aba5af9eeeed929dc /dh_listpackages | |
parent | 0d8d56edc5ad95e9ac110e10b4b3111c5656f958 (diff) | |
download | debhelper-75275ded89f0b456e7e396008af153d26bb35626.tar.gz |
r128: Initial revision
Diffstat (limited to 'dh_listpackages')
-rwxr-xr-x | dh_listpackages | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dh_listpackages b/dh_listpackages new file mode 100755 index 00000000..7a764af5 --- /dev/null +++ b/dh_listpackages @@ -0,0 +1,8 @@ +#!/usr/bin/perl -w +# +# Output a list of all packages debhelper will act on. + +BEGIN { push @INC, "debian", "/usr/lib/debhelper" } +use Dh_Lib; +init(); +print join("\n",@{$dh{DOPACKAGES}})."\n"; |