diff options
author | Xavier Ducrohet <xav@android.com> | 2012-04-05 14:23:00 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-04-05 14:23:00 -0700 |
commit | 34dbc5d89b8671491506f778533c1462dfcd3dc7 (patch) | |
tree | fcd49e2bc964be1c44117952061662464af57cd0 /eclipse/scripts/create_all_symlinks.sh | |
parent | ca22e778d384d8b632143bfa44512ca8f58da44f (diff) | |
download | sdk-34dbc5d89b8671491506f778533c1462dfcd3dc7.zip sdk-34dbc5d89b8671491506f778533c1462dfcd3dc7.tar.gz sdk-34dbc5d89b8671491506f778533c1462dfcd3dc7.tar.bz2 |
minor update to error output of create_all_symlinks.
Change-Id: I1b3a1a02c8b4113b06f339e6148cd3f47e648a29
Diffstat (limited to 'eclipse/scripts/create_all_symlinks.sh')
-rwxr-xr-x | eclipse/scripts/create_all_symlinks.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclipse/scripts/create_all_symlinks.sh b/eclipse/scripts/create_all_symlinks.sh index fcc86af..6e8095b 100755 --- a/eclipse/scripts/create_all_symlinks.sh +++ b/eclipse/scripts/create_all_symlinks.sh @@ -239,6 +239,7 @@ for SRC in $CP_FILES; do continue fi if [[ ! -f "$SRC" ]]; then + ORIG_SRC="$SRC" SRC="out/host/$PLATFORM/framework/$SRC.jar" fi if [[ -f "$SRC" ]]; then @@ -248,7 +249,7 @@ for SRC in $CP_FILES; do cpfile "$SRC" "$DEST" else - die "## Unknown file '$SRC' to copy in '$DEST'" + die "## Unknown source '$ORIG_SRC' to copy in '$DEST'" fi done |