diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2013-04-02 14:09:59 +0200 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2013-04-04 22:42:22 +0200 |
| commit | 7271ff603d67585d281839fe58e198275c851e75 (patch) | |
| tree | e3f20532768eefd800b5204d83e3b99d9f0b54ad | |
| parent | b3ef8c8e5bb85ea5186156b75fc009f1c6831cb6 (diff) | |
| download | rockbox-7271ff603d67585d281839fe58e198275c851e75.zip rockbox-7271ff603d67585d281839fe58e198275c851e75.tar.gz rockbox-7271ff603d67585d281839fe58e198275c851e75.tar.bz2 rockbox-7271ff603d67585d281839fe58e198275c851e75.tar.xz | |
Add ANDROID_SDK_PATH and ANDROID_NDK_PATH to generated Makefile.
Previously it was sufficient to set those variables when running configure.
Since ANDROID_NDK_PATH is now also used in the Android Makefile set both
variables in the generated Makefile as well -- not everyone has (or wants) to
set them globally in the environment.
Change-Id: Ib64ffeea379c58c9d361b3fbfefb67084dce666c
| -rwxr-xr-x | tools/configure | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 353b991..0ce5f2c 100755 --- a/tools/configure +++ b/tools/configure @@ -4042,6 +4042,8 @@ export ROCKBOX_LIBRARY_PATH=${libdir} export SDLCONFIG=${sdl} export LCDORIENTATION=${lcd_orientation} export ANDROID_ARCH=${ANDROID_ARCH} +export ANDROID_NDK_PATH=${ANDROID_NDK_PATH} +export ANDROID_SDK_PATH=${ANDROID_SDK_PATH} CONFIGURE_OPTIONS=${cmdline} |