aboutsummaryrefslogtreecommitdiff
path: root/build-scripts
diff options
context:
space:
mode:
authorVishal Bhoj <vishalbhoj@gmail.com>2013-11-20 19:24:33 +0530
committerVishal Bhoj <vishalbhoj@gmail.com>2013-11-20 19:24:33 +0530
commite6322a380bc74522c7efcb8f41145794d4fc2656 (patch)
tree8ae71027c8b14283a240d9ea717b5c2949553084 /build-scripts
parent7b7ddcf71a3925b449baeda30828dc80452b4d65 (diff)
Fix the missing fi condition and fix the indentation
Diffstat (limited to 'build-scripts')
-rwxr-xr-xbuild-scripts/create-user-build-script3
1 files changed, 2 insertions, 1 deletions
diff --git a/build-scripts/create-user-build-script b/build-scripts/create-user-build-script
index d8bfa94..d3187e1 100755
--- a/build-scripts/create-user-build-script
+++ b/build-scripts/create-user-build-script
@@ -177,11 +177,12 @@ export MANIFEST_BRANCH=${MANIFEST_BRANCH}
export MANIFEST_FILENAME=${MANIFEST_FILENAME}
export TARGET_PRODUCT=${TARGET_PRODUCT}
EOF
-if [ -n "$TARGET_KERNEL_SOURCE" ] ; then
+ if [ -n "$TARGET_KERNEL_SOURCE" ] ; then
cat <<EOF
export TARGET_KERNEL_SOURCE=${TARGET_KERNEL_SOURCE}
EOF
cat <<EOF
+ fi
export TARGET_SIMULATOR=false
export BUILD_TINY_ANDROID=${BUILD_TINY_ANDROID}
export CPUS=\`grep -c processor /proc/cpuinfo\`