Skip to content

Commit

Permalink
Makefiles: fix java version check ('test' has '=', not '==' as operator)
Browse files Browse the repository at this point in the history
Signed-off-by: David Schweikert <david@schweikert.ch>
  • Loading branch information
David Schweikert committed Feb 3, 2016
1 parent 35d351d commit 4377249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion m4/check_java_support.m4
Expand Up @@ -62,7 +62,7 @@ AC_DEFUN([AX_CHECK_JAVA_VERSION],
fi
fi
if test "$VERSION_OK" == "1";
if test "$VERSION_OK" = "1";
then
JNI_HOME=`echo $JAVAC_BIN | sed "s/\(.*\)[[/]]bin[[/]]java.*/\1/"`
JNI_LIBDIR=`find $JNI_HOME -name "libjvm.so" | sed "s/\(.*\)libjvm.so/\1/" | head -n 1`
Expand Down

0 comments on commit 4377249

Please sign in to comment.