Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitfaee0da

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 thenon-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 parent749c65d commitfaee0da

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
<JavaPathSeparatorCondition=" $([MSBuild]::IsOSPlatform('windows'))">;</JavaPathSeparator>
4-
<JavaPathSeparatorCondition=" '$(JavacClasspathSeparator)' == ''">:</JavaPathSeparator>
4+
<JavaPathSeparatorCondition=" '$(JavaPathSeparator)' == ''">:</JavaPathSeparator>
55
</PropertyGroup>
66
</Project>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp