Index: scripts/check_jni_methods.sh =================================================================== RCS file: /cvsroot/classpath/classpath/scripts/check_jni_methods.sh,v retrieving revision 1.5 diff -u -r1.5 check_jni_methods.sh --- scripts/check_jni_methods.sh 17 Jan 2005 21:53:05 -0000 1.5 +++ scripts/check_jni_methods.sh 19 Jan 2005 09:52:20 -0000 @@ -7,13 +7,13 @@ # Find all methods defined in the header files generated # from the java source files. grep -h '^JNIEXPORT .* Java_' include/*.h | \ - sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' | \ + LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' | \ sort > $TMPFILE # Find all methods in the JNI C source files. find native/jni -name \*.c | \ xargs grep -h '^Java_' | \ - sed -e 's,^\(Java_[a-z_A-Z0-9]*\) *(.*$,\1,' | \ + LC_ALL=C sed -e 's,^\(Java_[a-z_A-Z0-9]*\) *(.*$,\1,' | \ sort > $TMPFILE2 # Write temporary ignore file.