From f58462845a41cd46bfad671a6a3dbf2aa5a4ba05 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 28 Jan 2015 13:36:20 -0800 Subject: [PATCH] make sure CMAKE_INSTALL_PREFIX is visible in soxr command --- BUILD_ANDROID.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD_ANDROID.md b/BUILD_ANDROID.md index 767d3d6d03..c4c4c27dd7 100644 --- a/BUILD_ANDROID.md +++ b/BUILD_ANDROID.md @@ -92,7 +92,7 @@ From the soxr directory, use cmake, along with the `android.toolchain.cmake` fil The full set of commands to build soxr for Android is shown below ``` -cmake -DCMAKE_TOOLCHAIN_FILE=$FULL_PATH_TO_TOOLCHAIN -DHAVE_WORDS_BIGENDIAN_EXITCODE=1 -DBUILD_TESTS=0 -DCMAKE_INSTALL_PREFIX=. +cmake -DCMAKE_TOOLCHAIN_FILE=$FULL_PATH_TO_TOOLCHAIN -DCMAKE_INSTALL_PREFIX=. -DHAVE_WORDS_BIGENDIAN_EXITCODE=1 -DBUILD_TESTS=0 make make install ```