diff options
author | Xavier Ducrohet <xav@android.com> | 2012-04-05 16:06:44 -0700 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-04-05 16:06:45 -0700 |
commit | 2d023c87f8fc5cc403812ae1d9e64e1bdf261617 (patch) | |
tree | 58f09e77606a7c5604a5b6235ddf921c70248477 /eclipse/scripts/create_all_symlinks.sh | |
parent | d2ac8a61c333779b865cc95100dbd46f5cee3e69 (diff) | |
parent | 34dbc5d89b8671491506f778533c1462dfcd3dc7 (diff) | |
download | sdk-2d023c87f8fc5cc403812ae1d9e64e1bdf261617.zip sdk-2d023c87f8fc5cc403812ae1d9e64e1bdf261617.tar.gz sdk-2d023c87f8fc5cc403812ae1d9e64e1bdf261617.tar.bz2 |
Merge "minor update to error output of create_all_symlinks."
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 65b8abe..a6874ba 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 |