From 6807ba2148d2db05b89da45826d6888bec6c956d Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 30 Aug 2017 13:55:35 -0700 Subject: [PATCH] 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 --- scripts/build-ndk-prebuilts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-ndk-prebuilts.sh b/scripts/build-ndk-prebuilts.sh index f8ce34945..197a38d2a 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