Skip to content

Commit

Permalink
Fix[freetype]: fix path again
Browse files Browse the repository at this point in the history
  • Loading branch information
artdeell authored Jul 13, 2024
1 parent 03e63c2 commit 5b56e20
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci_build_android.bash
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ if [ "$SKIP_FREETYPE" != "1" ]; then
llvm-strip ./build_android-$LWJGL_BUILD_ARCH/lib/libfreetype.so

cd ..
cp freetype-$BUILD_FREETYPE_VERSION/build_android-$LWJGL_BUILD_ARCH/lib/libfreetype.so $LWJGL_NATIVE/freetype/
cp freetype-$BUILD_FREETYPE_VERSION/build_android-$LWJGL_BUILD_ARCH/lib/libfreetype.so $LWJGL_NATIVE/
rm -rf freetype-$BUILD_FREETYPE_VERSION
unset BUILD_FREETYPE_VERSION
unset CC
Expand Down Expand Up @@ -128,7 +128,9 @@ yes | ant -Dplatform.linux=true \
rm -rf bin/out; mkdir bin/out
find $LWJGL_NATIVE -name 'liblwjgl*.so' -exec cp {} bin/out/ \;
cp $LWJGL_NATIVE/shaderc/libshaderc.so bin/out/
cp $LWJGL_NATIVE/freetype/libfreetype.so bin/out/
if [ -e "$LWJGL_NATIVE/libfreetype.so" ]; then
cp $LWJGL_NATIVE/libfreetype.so bin/out/
fi

# Cleanup unused output jar files
find bin/RELEASE \( -name '*-natives-*' -o -name '*-sources.jar' \) -delete

0 comments on commit 5b56e20

Please sign in to comment.