From a2dbea0390b9ec7cac3134b947d44ca0757bba51 Mon Sep 17 00:00:00 2001 From: Maksim Belov <45949002+artdeell@users.noreply.github.com> Date: Sat, 15 Feb 2025 12:35:22 +0300 Subject: [PATCH] Fix[vm]: copy correct variant into libs --- 9_repackjre.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9_repackjre.sh b/9_repackjre.sh index 6f1b1ee..031a461 100755 --- a/9_repackjre.sh +++ b/9_repackjre.sh @@ -30,7 +30,7 @@ makearch () { mv lib/jexec "$work1"/lib/; # server contains the libjvm.so - mv lib/server "$work1"/lib/; + mv lib/$JVM_VARIANTS "$work1"/lib/; # All the other .so files are at the root of the lib folder find ./ -name '*.so' -execdir mv {} "$work1"/lib/{} \;