]> git.lizzy.rs Git - rust.git/commitdiff
mk: Fix use of deprecated configure var
authorAlex Crichton <alex@alexcrichton.com>
Tue, 26 Apr 2016 01:35:58 +0000 (18:35 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Tue, 26 Apr 2016 01:35:58 +0000 (18:35 -0700)
The `--android-cross-path` has been deprecated for some time now, we should use
`CFG_ARM_LINUX_ANDROIDEABI_NDK` instead.

Ideally this would use the right triple, but we're only testing ARM for now.

mk/tests.mk

index 1c65a09cbc4d1e4198dadc6b33910cd68dd4aa02..f5a499105be649db8358302c60d457656382ee4b 100644 (file)
@@ -623,7 +623,7 @@ CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3) := \
        --lldb-python $$(CFG_LLDB_PYTHON) \
         --gdb-version="$(CFG_GDB_VERSION)" \
         --lldb-version="$(CFG_LLDB_VERSION)" \
-        --android-cross-path=$(CFG_ANDROID_CROSS_PATH) \
+        --android-cross-path=$(CFG_ARM_LINUX_ANDROIDEABI_NDK) \
         --adb-path=$(CFG_ADB) \
         --adb-test-dir=$(CFG_ADB_TEST_DIR) \
         --host-rustcflags "$(RUSTC_FLAGS_$(3)) $$(CTEST_RUSTC_FLAGS) -L $$(RT_OUTPUT_DIR_$(3))" \