From cbd34f0be104d93f16f56b8cf863c22c0fbb3b5c Mon Sep 17 00:00:00 2001 From: vennos5 Date: Tue, 7 Nov 2017 18:52:29 +0200 Subject: [PATCH] Fix build paths --- examples/android/install_freetype_arm.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) mode change 100644 => 100755 examples/android/install_freetype_arm.sh diff --git a/examples/android/install_freetype_arm.sh b/examples/android/install_freetype_arm.sh old mode 100644 new mode 100755 index 789e7306..50e13855 --- a/examples/android/install_freetype_arm.sh +++ b/examples/android/install_freetype_arm.sh @@ -8,13 +8,16 @@ #Load settings for paths . ./android_build_config.mk +inst=$(pwd) mkdir freetype cd freetype wget "https://download.savannah.gnu.org/releases/freetype/freetype-2.6.tar.gz" tar zxvf freetype-2.6.tar.gz cd freetype-2.6/ -./configure --host=arm-linux-androideabi --prefix="$(pwd)/output" --without-zlib --with-png=no --with-harfbuzz=no +./configure --host=arm-linux-androideabi --without-zlib --prefix="$(pwd)/freetype" --with-png=no --with-harfbuzz=no make -j$(nproc) make install -cp ./done/lib/libfreetype.so ../../libs/armeabi-v7a/libfreetype.so +echo "ERNO ERNO ENOR" +mkdir -p ../../libs/armeabi-v7a +cp freetype/lib/libfreetype.so ../../libs/armeabi-v7a/libfreetype.so