Quote JAVA_HOME variable value in Java test suite makefile.
This should fix problem with JAVA_HOME containing spaces, as it happens in the AppVeyor build.
This commit is contained in:
parent
751dbf2bb7
commit
b908a9b430
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ setup = \
|
|||
# Doxygen test cases need to be compiled together with the CommentsParser class
|
||||
# which depends on com.sun.javadoc package which is located in this JAR.
|
||||
JAVA_CLASSPATH := .
|
||||
$(DOXYGEN_TEST_CASES:=.cpptest): JAVA_CLASSPATH := $(JAVA_HOME)/lib/tools.jar:.
|
||||
$(DOXYGEN_TEST_CASES:=.cpptest): JAVA_CLASSPATH := "$(JAVA_HOME)/lib/tools.jar":.
|
||||
$(DOXYGEN_TEST_CASES:=.cpptest): DOXYGEN_COMMENT_PARSER := $(srcdir)/CommentParser.java
|
||||
|
||||
# Compiles java files then runs the testcase. A testcase is only run if
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue