Skip to content

Commit

Permalink
Correct config.log location
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduytran0 authored Jun 9, 2021
1 parent 4c0ac09 commit 992b00f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildlibs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ else
export PATH=$TOOLCHAIN/bin:$PATH
./configure \
--host=$TARGET \
--prefix=`pwd`/build_android-${TARGET_SHORT} \
--prefix=${PWD}/build_android-${TARGET_SHORT} \
--without-zlib \
--with-png=no \
--with-harfbuzz=no $EXTRA_ARGS \
|| error_code=$?
fi
if [ "$error_code" -ne 0 ]; then
echo "\n\nCONFIGURE ERROR $error_code , config.log:"
cat config.log
cat ${PWD}/build_android-${TARGET_SHORT}/config.log
exit $error_code
fi

Expand Down

0 comments on commit 992b00f

Please sign in to comment.