From 22ba954fea1508b780f566481960afce7e129e1d Mon Sep 17 00:00:00 2001 From: Andrew John Hughes Date: Wed, 11 Jun 2008 21:35:27 +0000 Subject: Forwardport native-only build fix #03. 2008-06-01 Andrew John Hughes * scripts/check_jni_methods.sh.in: Search the source directory as well for when headers are in the tarball. --- ChangeLog | 6 ++++++ scripts/check_jni_methods.sh.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 91aad3025..bb4e6a3a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-06-01 Andrew John Hughes + + * scripts/check_jni_methods.sh.in: + Search the source directory as well for + when headers are in the tarball. + 2008-06-01 Andrew John Hughes * Makefile.am: Replace tools with diff --git a/scripts/check_jni_methods.sh.in b/scripts/check_jni_methods.sh.in index 73cd1fc6a..835f7b4b1 100644 --- a/scripts/check_jni_methods.sh.in +++ b/scripts/check_jni_methods.sh.in @@ -9,7 +9,7 @@ TMPFILE3=/tmp/check-jni-methods.$$.3 # Find all methods defined in the header files generated # from the java source files. -grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h | \ +grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h @abs_top_srcdir@/include/*.h | \ LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' | \ sort > $TMPFILE -- cgit v1.2.1