Skip to content

Commit

Permalink
Remove IS_MAC conditional in Linux only branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jerboaa authored and zakkak committed Jul 10, 2024
1 parent 179f81d commit 94de645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public static void main(String... args) throws IOException
Path libjvmSource = Path.of("substratevm", "mxbuild", platformAndJDK, "com.oracle.svm.native.jvm.posix", PLATFORM, (IS_MAC ? "default" : "glibc"), "libjvm.a");
if (IS_LINUX)
{
libContainerSource = Path.of("substratevm", "mxbuild", PLATFORM, "com.oracle.svm.native.libcontainer", PLATFORM, (IS_MAC ? "default" : "glibc"), "libsvm_container.a");
libContainerSource = Path.of("substratevm", "mxbuild", PLATFORM, "com.oracle.svm.native.libcontainer", PLATFORM, "glibc", "libsvm_container.a");
}
if (IS_MAC)
{
Expand Down

0 comments on commit 94de645

Please sign in to comment.