Skip to content

Commit 4114ef2

Browse files
committed
Merge pull request #3414 from martinjos/windows-build-jdk-fix
Windows build: look for JDK release file in parent dir.
2 parents 1ee9f56 + 8f89baf commit 4114ef2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build/build.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,9 @@
905905
<fileset dir="windows/work" includes="**/*.html, **/*.dll, **/*.exe" />
906906
</chmod>
907907

908-
<loadproperties srcfile="${WINDOWS_BUNDLED_JVM}/release" prefix="windows"/>
908+
<!-- For JVM within JDK, release file is in parent directory -->
909+
<property file="${WINDOWS_BUNDLED_JVM}/release" prefix="windows"/>
910+
<property file="${WINDOWS_BUNDLED_JVM}/../release" prefix="windows"/>
909911

910912
<fail message="It looks like ${WINDOWS_BUNDLED_JVM} does not contain a Windows JVM">
911913
<condition>

0 commit comments

Comments
 (0)