From: William Bourque Date: Fri, 18 Sep 2009 18:15:38 +0000 (-0400) Subject: Fixed small bug about missing space in CFLAGS X-Git-Tag: v0.12.20~36 X-Git-Url: https://git.lttng.org/?p=lttv.git;a=commitdiff_plain;h=a97fddd2dbcf0cf735edcc9e1bdc578102571fed Fixed small bug about missing space in CFLAGS --- 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