aboutsummaryrefslogtreecommitdiff
path: root/build-scripts/create-user-build-script
diff options
context:
space:
mode:
authorAndy Doan <andy.doan@linaro.org>2012-03-13 12:49:12 -0500
committerAndy Doan <andy.doan@linaro.org>2012-03-13 12:49:12 -0500
commit28d4d229ab077c545e304243d7a17cff8c5a0f45 (patch)
tree6e2d58fc34d327386e78ac16d1c8b9e0239c2294 /build-scripts/create-user-build-script
parent781c4e8204b0d188336a932de22c7182498e97eb (diff)
fix usage statement for builds with overlays
Diffstat (limited to 'build-scripts/create-user-build-script')
-rwxr-xr-xbuild-scripts/create-user-build-script4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-scripts/create-user-build-script b/build-scripts/create-user-build-script
index 427f88d..d061830 100755
--- a/build-scripts/create-user-build-script
+++ b/build-scripts/create-user-build-script
@@ -7,7 +7,7 @@ setup-repo-vars
if [ -n "$SOURCE_OVERLAY" ]; then
USAGE_SUM="'Usage: \$0 -o <overlay.tar> [ -t -d directory ]'"
- USAGE_OVERLAY="\n -o The path to the vendor required overlay\n Can be downloaded from http://snapshots.linaro.org/android/binaries/$SOURCE_OVERLAY\n"
+ USAGE_OVERLAY="'\\n -o The path to the vendor required overlay.\\n Can be downloaded from http://snapshots.linaro.org/android/binaries/$SOURCE_OVERLAY\\n'"
USAGE_OPTOVERLAY="o:"
USAGE_OPTHANDLER="o ) SOURCE_OVERLAY=\$OPTARG;;"
else
@@ -35,7 +35,7 @@ DIR=android
usage()
{
echo $USAGE_SUM
- echo $USAGE_OVERLAY
+ echo -e $USAGE_OVERLAY
echo " -t Reproduce the from the tip of the branch rather than doing"
echo " an exact replica build"
echo " -d <directory> The directory to download code and build from"