aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse/scripts/create_all_symlinks.sh
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2012-04-05 16:06:44 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-04-05 16:06:45 -0700
commit2d023c87f8fc5cc403812ae1d9e64e1bdf261617 (patch)
tree58f09e77606a7c5604a5b6235ddf921c70248477 /eclipse/scripts/create_all_symlinks.sh
parentd2ac8a61c333779b865cc95100dbd46f5cee3e69 (diff)
parent34dbc5d89b8671491506f778533c1462dfcd3dc7 (diff)
downloadsdk-2d023c87f8fc5cc403812ae1d9e64e1bdf261617.tar.gz
sdk-2d023c87f8fc5cc403812ae1d9e64e1bdf261617.tar.bz2
sdk-2d023c87f8fc5cc403812ae1d9e64e1bdf261617.zip
Merge "minor update to error output of create_all_symlinks."
Diffstat (limited to 'eclipse/scripts/create_all_symlinks.sh')
-rwxr-xr-xeclipse/scripts/create_all_symlinks.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/eclipse/scripts/create_all_symlinks.sh b/eclipse/scripts/create_all_symlinks.sh
index 65b8abee4..a6874ba95 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