From a97fddd2dbcf0cf735edcc9e1bdc578102571fed Mon Sep 17 00:00:00 2001 From: William Bourque Date: Fri, 18 Sep 2009 14:15:38 -0400 Subject: [PATCH] Fixed small bug about missing space in CFLAGS --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index fbc267bb..6f3a8356 100644 --- a/configure.ac +++ b/configure.ac @@ -82,7 +82,9 @@ if test $JAVA_SDK; then if test -d $JAVA_SDK; then AC_MSG_RESULT([using java include in $JAVA_SDK]) SUBDIRS=`find $JAVA_SDK/include -type d` + CFLAGS+=" " CFLAGS+=`for x in $SUBDIRS; do echo -n "-I$x "; done` + CFLAGS+=" " else AC_MSG_ERROR(Unable to find java include file in $JAVA_JDK) fi -- 2.34.1