diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-06-18 21:34:36 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-06-18 21:34:36 +0200 |
commit | 0a292d29687870997987fcfd2574f5daca447bbe (patch) | |
tree | 8b85be9977aa6e7e3112af0e2998ff9c2d34f823 | |
parent | deb20257d6553cf6f0825d539653c053150e18ef (diff) |
apt-why: Removed --not (it's useless right now)
-rwxr-xr-x | bin/apt-why | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bin/apt-why b/bin/apt-why index d6e50c1..bed860a 100755 --- a/bin/apt-why +++ b/bin/apt-why @@ -8,11 +8,9 @@ use Switch; use Getopt::Long; my $cache = AptPkg::Cache->new; -my $not = 0; my $max_depth = 5; my @deptypes; GetOptions( - 'not' => \$not, 'deptype=s' => \@deptypes, 'depth=i' => \$max_depth, ); |