diff options
| author | Young-il Choi <duddlf.choi@samsung.com> | 2013-08-07 20:43:46 +0900 |
|---|---|---|
| committer | Young-il Choi <duddlf.choi@samsung.com> | 2013-08-07 20:43:46 +0900 |
| commit | d463f4cb10aeb93bff9c4a376b6c0e46b4abe304 (patch) | |
| tree | c7b5cb0fc0dd47678996945730ade8ebdf800ca6 | |
| parent | 492cbcee6dd042913254bf31bf94c4f5c7f5e66a (diff) | |
| download | rust-d463f4cb10aeb93bff9c4a376b6c0e46b4abe304.tar.gz rust-d463f4cb10aeb93bff9c4a376b6c0e46b4abe304.zip | |
mk: test.mk fix to specify ADB variables not adb
| -rw-r--r-- | mk/tests.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index 682ea3e5f69..8e921d300b5 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -123,7 +123,7 @@ endef $(foreach target,$(CFG_TARGET_TRIPLES), \ $(if $(findstring $(target),"arm-linux-androideabi"), \ $(if $(findstring adb,$(CFG_ADB)), \ - $(if $(findstring device,$(shell adb devices 2>/dev/null | grep -E '^[_A-Za-z0-9-]+[[:blank:]]+device')), \ + $(if $(findstring device,$(shell $(CFG_ADB) devices 2>/dev/null | grep -E '^[_A-Za-z0-9-]+[[:blank:]]+device')), \ $(info check: $(target) test enabled \ $(info check: android device attached) \ $(eval $(call DEF_ADB_DEVICE_STATUS, true))), \ |
