From 287bec0d3b3badff7b0fd3ec822b2b594eb8cb85 Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Wed, 24 Nov 2021 15:51:08 +0100 Subject: [PATCH] Copy precompiled classes correctly --- scripts/run_linux.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/run_linux.sh b/scripts/run_linux.sh index c2a7071..70ec6ca 100644 --- a/scripts/run_linux.sh +++ b/scripts/run_linux.sh @@ -28,7 +28,7 @@ else cd /jcef fi -#CMakeLists patching +#CMakeLists patching python3 /builder/patch_cmake.py CMakeLists.txt /builder/CMakeLists.txt.patch # Create and enter the `jcef_build` directory. @@ -50,7 +50,8 @@ elif [ ${TARGETARCH} == '386' ]; then ./compile.sh linux32 else echo "Can not compile java classes under arm/v6 currently. So we copy from prebuild directory." - cp -r /prebuild/* /jcef/out/ + mkdir -p /jcef/out/linux32 + cp -r /prebuild/* /jcef/out/linux32/ fi #Entering distribution phase - disable error handling (javadoc building fails here nontheless)