diff options
author | joerg <joerg@pkgsrc.org> | 2006-06-01 21:16:40 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-06-01 21:16:40 +0000 |
commit | a08d2c6115698d7fc6517d250948fbe9f15a4103 (patch) | |
tree | 2ceaa3b3f0a2f32b07db7b9810e02d76ca545dd3 /shells | |
parent | d9ce311b74e325c3084209029af4dd9bbefd250e (diff) | |
download | pkgsrc-a08d2c6115698d7fc6517d250948fbe9f15a4103.tar.gz |
Ignore unknown resource types instead of bailing out.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/zsh3/distinfo | 3 | ||||
-rw-r--r-- | shells/zsh3/patches/patch-ae | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/shells/zsh3/distinfo b/shells/zsh3/distinfo index fdc03a71e8d..c21db5913ab 100644 --- a/shells/zsh3/distinfo +++ b/shells/zsh3/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.4 2006/04/07 15:28:50 jlam Exp $ +$NetBSD: distinfo,v 1.5 2006/06/01 21:16:40 joerg Exp $ SHA1 (zsh-3.0.8.tar.gz) = d5d07abdd9c0f063c79d19de9482f7517016b54d RMD160 (zsh-3.0.8.tar.gz) = ea0f8e026f71e56ddaab04d8e5926bfd0914a4f1 @@ -6,3 +6,4 @@ Size (zsh-3.0.8.tar.gz) = 657979 bytes SHA1 (patch-aa) = 7209d74d6a7535e41d8db1d1109a6039b9bb3e0e SHA1 (patch-ac) = 5e5c47d218a191692907b67839a8e874857fe2be SHA1 (patch-ad) = 613fcaaa117aa38ff2e41eddaad5947bd5e0190d +SHA1 (patch-ae) = f395aa2f5164e8642448f5eb888f2e14de9256b7 diff --git a/shells/zsh3/patches/patch-ae b/shells/zsh3/patches/patch-ae new file mode 100644 index 00000000000..755a5e25d57 --- /dev/null +++ b/shells/zsh3/patches/patch-ae @@ -0,0 +1,12 @@ +$NetBSD: patch-ae,v 1.1 2006/06/01 21:16:40 joerg Exp $ + +--- Src/rlimits.awk.orig 2006-06-01 21:12:10.000000000 +0000 ++++ Src/rlimits.awk +@@ -65,7 +65,6 @@ END { + + for (i = 0; i < 0 + nlimits; i++) + if (msg[i] == "") { +- badlimit++ + printf("\t%c%s%c,\n", 34, lim[i], 34) + } else + printf("\t%c%s%c,\n", 34, msg[i], 34) |