diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-05 11:22:35 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-05 11:22:35 +0000 |
commit | 26fb8d23055aaa695643c77a984b1de3f79af9b2 (patch) | |
tree | ad74857f2634584075c6a4677fbf65a67e5db833 /lang/kaffe | |
parent | 3d5e487fdbb1f2b2cc376d821c1b01fedcd7d119 (diff) | |
download | pkgsrc-26fb8d23055aaa695643c77a984b1de3f79af9b2.tar.gz |
Added a patch for check_jni_methods.sh.
Diffstat (limited to 'lang/kaffe')
-rw-r--r-- | lang/kaffe/distinfo | 3 | ||||
-rw-r--r-- | lang/kaffe/patches/patch-ae | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/lang/kaffe/distinfo b/lang/kaffe/distinfo index 38b3975186b..ad265a483d8 100644 --- a/lang/kaffe/distinfo +++ b/lang/kaffe/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.23 2006/05/29 17:47:10 joerg Exp $ +$NetBSD: distinfo,v 1.24 2006/10/05 11:22:35 rillig Exp $ SHA1 (kaffe-1.1.7.tar.gz) = 5951d16a4a7b11689932583d134520ca6de00817 RMD160 (kaffe-1.1.7.tar.gz) = 7523a3470cd06cf60dbade8ea2f464dc9d85277b @@ -7,3 +7,4 @@ SHA1 (patch-aa) = a06b60e1ba76df59955bd1aba305fc8fef0a310a SHA1 (patch-ab) = 51382ff9c9672eab7bb1729e8435af3d134a4ea1 SHA1 (patch-ac) = 2fb9d3d7bdfdecd6090403aae9485662d1bcfbc5 SHA1 (patch-ad) = 6ad03154e1874822d8a784cdcf6faa248e76c38f +SHA1 (patch-ae) = 81e4a650fbb7fa18fa19597d27362bbb0155847f diff --git a/lang/kaffe/patches/patch-ae b/lang/kaffe/patches/patch-ae new file mode 100644 index 00000000000..276a61545be --- /dev/null +++ b/lang/kaffe/patches/patch-ae @@ -0,0 +1,15 @@ +$NetBSD: patch-ae,v 1.7 2006/10/05 11:22:35 rillig Exp $ + +Using the ">" operator conflicts with "set -C". + +--- libraries/javalib/external/classpath/scripts/check_jni_methods.sh.orig 2005-09-05 20:46:16.000000000 +0200 ++++ libraries/javalib/external/classpath/scripts/check_jni_methods.sh 2006-10-05 13:21:27.000000000 +0200 +@@ -43,7 +43,7 @@ EOF + # Use fgrep and direct the output to /dev/null for compatibility with older + # grep instead of using the non portable -q. + if diff -b -U 0 $TMPFILE $TMPFILE2 | grep '^[+-]Java' | \ +- fgrep -v -f $TMPFILE3 > /dev/null; ++ fgrep -v -f $TMPFILE3 >> /dev/null; + then + PROBLEM=1 + echo "Found a problem with the JNI methods declared and implemented." |