aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLisa Nguyen <lisa.nguyen@linaro.org>2015-10-30 22:06:18 -0700
committerLisa Nguyen <lisa.nguyen@linaro.org>2015-11-18 13:32:00 -0800
commit9224192db7ef427e53106558cdb2871ee1565a1c (patch)
tree5ed9db0d2870aefcdc5931390febf84ec9804afa
parent374c1b5bc8afccd4cd839d9fe9ab8ba69b43055e (diff)
Switches/Android: Change value of LOCAL_MODULE_PATH
Change the value of LOCAL_MODULE_PATH in Switches/Android.mk file, so that Android systems can find the Switches.sh file properly. Without this patch, the following warnings would be generated: cpuidle_sanity.sh: ../include/functions.sh[26]: .: ../Switches/Switches.sh: No such file or directory This patch fixes bug #1335: https://bugs.linaro.org/show_bug.cgi?id=1335 Signed-off-by: Lisa Nguyen <lisa.nguyen@linaro.org>
-rw-r--r--Switches/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Switches/Android.mk b/Switches/Android.mk
index c31ce53..d367761 100644
--- a/Switches/Android.mk
+++ b/Switches/Android.mk
@@ -4,6 +4,6 @@ LOCAL_MODULE_TAGS := eng
LOCAL_MODULE_CLASS := tests
LOCAL_MODULE := Switches.sh
LOCAL_SRC_FILES := Switches.sh
-LOCAL_MODULE_PATH := $(TARGET_OUT_EXECUTABLES)/pm-qa
+LOCAL_MODULE_PATH := $(TARGET_OUT_EXECUTABLES)/pm-qa/Switches
systemimage: Switches.sh
include $(BUILD_PREBUILT)