Skip to content

Commit faee0da

Browse files
authored
[build] Change $(JavacClasspathSeparator) to $(JavaPathSeparator) (#1373)
In `build-tools/Java.Interop.Sdk/Sdk/Sdk.props`, the property `$(JavaPathSeparator)` is defined, but the condition for the non-Windows case references an undeclared property `$(JavacClasspathSeparator)`. It causes on Windows, javac -classpath with multiple jars fails. This is likely a typo. This change corrects it to `$(JavaPathSeparator)` to match the property being defined.
1 parent 749c65d commit faee0da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
33
<JavaPathSeparator Condition=" $([MSBuild]::IsOSPlatform('windows')) ">;</JavaPathSeparator>
4-
<JavaPathSeparator Condition=" '$(JavacClasspathSeparator)' == '' ">:</JavaPathSeparator>
4+
<JavaPathSeparator Condition=" '$(JavaPathSeparator)' == '' ">:</JavaPathSeparator>
55
</PropertyGroup>
66
</Project>

0 commit comments

Comments
 (0)