diff options
author | fhajny <fhajny@pkgsrc.org> | 2010-05-14 12:12:22 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2010-05-14 12:12:22 +0000 |
commit | b9e72ba9b50bc07ee4f407e7e825694605a1ca3a (patch) | |
tree | a63f491fcdeca54224fb29ccb68b458a4142f4b8 /databases/mytop/patches | |
parent | 6ccc28160056cbc918b1c96fa787995b635f8453 (diff) | |
download | pkgsrc-b9e72ba9b50bc07ee4f407e7e825694605a1ca3a.tar.gz |
Fix a compatibility problem with Perl 5.10's Getopt
Diffstat (limited to 'databases/mytop/patches')
-rw-r--r-- | databases/mytop/patches/patch-aa | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/databases/mytop/patches/patch-aa b/databases/mytop/patches/patch-aa new file mode 100644 index 00000000000..d4d9f617f2e --- /dev/null +++ b/databases/mytop/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2010/05/14 12:12:22 fhajny Exp $ + +Fix options parsing problem on Perl 5.10. + +--- mytop.orig 2007-02-17 04:57:46.000000000 +0000 ++++ mytop +@@ -153,7 +153,7 @@ GetOptions( + "idle|i" => \$config{idle}, + "resolve|r" => \$config{resolve}, + "prompt!" => \$config{prompt}, +- "long|!" => \$config{long_nums}, ++ "long!" => \$config{long_nums}, + "mode|m=s" => \$config{mode}, + "sort=s" => \$config{sort}, + ); |