aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/build-ndk-prebuilts.sh
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2017-08-30 13:55:35 -0700
committerDan Albert <danalbert@google.com>2017-08-30 13:55:35 -0700
commit6807ba2148d2db05b89da45826d6888bec6c956d (patch)
treed12e2bd08a0c1948c0040ea65478a8467e07fc8d /scripts/build-ndk-prebuilts.sh
parentfe391875dcc2d86e5c1ca38fd12b4da0abefb467 (diff)
downloadbuild_soong-6807ba2148d2db05b89da45826d6888bec6c956d.tar.gz
build_soong-6807ba2148d2db05b89da45826d6888bec6c956d.tar.bz2
build_soong-6807ba2148d2db05b89da45826d6888bec6c956d.zip
Fix ndk prebuilts script.
This wasn't actually including the quotes, so it was a no-op. Test: build/soong/scripts/build-ndk-prebuilts.sh Bug: http://b/65113115 Change-Id: I43fda02f58b9661fc78eef9055063347baaf84b3
Diffstat (limited to 'scripts/build-ndk-prebuilts.sh')
-rwxr-xr-xscripts/build-ndk-prebuilts.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-ndk-prebuilts.sh b/scripts/build-ndk-prebuilts.sh
index f8ce3494..197a38d2 100755
--- a/scripts/build-ndk-prebuilts.sh
+++ b/scripts/build-ndk-prebuilts.sh
@@ -13,7 +13,7 @@ PLATFORM_VERSION_ALL_CODENAMES=$(get_build_var PLATFORM_VERSION_ALL_CODENAMES)
# PLATFORM_VERSION_ALL_CODESNAMES is a comma separated list like O,P. We need to
# turn this into ["O","P"].
-PLATFORM_VERSION_ALL_CODENAMES=${PLATFORM_VERSION_ALL_CODENAMES/,/","}
+PLATFORM_VERSION_ALL_CODENAMES=${PLATFORM_VERSION_ALL_CODENAMES/,/'","'}
PLATFORM_VERSION_ALL_CODENAMES="[\"${PLATFORM_VERSION_ALL_CODENAMES}\"]"
SOONG_OUT=${OUT_DIR}/soong