aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2015-08-25 18:06:10 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2015-08-25 18:06:10 +0800
commit51a14bfa975502eee2394fd9505780596af3dea1 (patch)
tree3121d49c058c7a728c7436ef5a977ee163c29c96
parent2454be26226038beb0f2642d3292ed50962bdcff (diff)
Fix export error when use multiple patchset files.
otherwise we will got following error: + export PATCHSETS=LOLLIPOP-MLCR-PATCHSET LOLLIPOP-CHROMIUM-PATCHSET + PATCHSETS=LOLLIPOP-MLCR-PATCHSET linaro_android_build_cmds.sh: line 163: export: `LOLLIPOP-CHROMIUM-PATCHSET': not a valid identifier Change-Id: Ia5f7ac4397b32122d9132bd2e248ff6307b1eea3 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
-rwxr-xr-xbuild-scripts/create-user-build-script2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-scripts/create-user-build-script b/build-scripts/create-user-build-script
index e184997..1b0a6d7 100755
--- a/build-scripts/create-user-build-script
+++ b/build-scripts/create-user-build-script
@@ -199,7 +199,7 @@ export MANIFEST_BRANCH=${MANIFEST_BRANCH}
export LOCAL_MANIFEST_BRANCH=${LOCAL_MANIFEST_BRANCH}
export MANIFEST_FILENAME=${MANIFEST_FILENAME}
export TARGET_PRODUCT=${TARGET_PRODUCT}
-export PATCHSETS=${PATCHSETS}
+export PATCHSETS="${PATCHSETS}"
export LUNCH=${LUNCH}
EOF
if [ -n "$TARGET_KERNEL_SOURCE" ] ; then