summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLisa Nguyen <lisa.nguyen@linaro.org>2017-10-26 11:32:38 -0700
committerMilosz Wasilewski <milosz.wasilewski@linaro.org>2017-11-01 16:15:54 +0000
commite50ff7469ea09b3a4b53c12ec7a84ba639514b75 (patch)
tree47891f84e2259575ea9913fd182d92f6bd620b72
parent1a61fe89722fcfcb499590b4c49954b2f73a8c08 (diff)
automated/android/wa: Update dependencies to remove obsolete packages
Update the list of dependencies needed to run Workload Automation on Android, so we do not run into errors such as: "E: Unable to locate package libstdc++6 E: Couldn't find any package by regex 'libstdc++6' E: Package 'libgcc1:i386' has no installation candidate E: Package 'zlib1g:i386' has no installation candidate E: Package 'libncurses5:i386' has no installation candidate" Change-Id: I3b1322966ee55b8f860f15120477470be9c66967 Signed-off-by: Lisa Nguyen <lisa.nguyen@linaro.org>
-rwxr-xr-xautomated/android/workload-automation/workload-automation.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/automated/android/workload-automation/workload-automation.sh b/automated/android/workload-automation/workload-automation.sh
index 327b4db..955ce5e 100755
--- a/automated/android/workload-automation/workload-automation.sh
+++ b/automated/android/workload-automation/workload-automation.sh
@@ -47,7 +47,7 @@ create_out_dir "${OUTPUT}"
if [ "${SKIP_INSTALL}" = "true" ] || [ "${SKIP_INSTALL}" = "True" ]; then
info_msg "WA installation skipped"
else
- PKGS="git wget zip tar xz-utils python python-yaml python-lxml python-setuptools python-numpy python-colorama python-pip sqlite3 libstdc++6:i386 libgcc1:i386 zlib1g:i386 libncurses5:i386 aapt android-tools-adb time sysstat python-jinja2 curl"
+ PKGS="git wget zip tar xz-utils python python-yaml python-lxml python-setuptools python-numpy python-colorama python-pip sqlite3 lib32stdc++6 lib32z1 lib32gcc1 lib32ncurses5 aapt android-tools-adb time sysstat python-jinja2 curl"
! check_root && error_msg "Please run this test as root."
dpkg --add-architecture i386
install_deps "${PKGS}"