minor update to error output of create_all_symlinks.

Change-Id: I1b3a1a02c8b4113b06f339e6148cd3f47e648a29
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 @@
     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 @@
 
     cpfile "$SRC" "$DEST"
   else
-    die "## Unknown file '$SRC' to copy in '$DEST'"
+    die "## Unknown source '$ORIG_SRC' to copy in '$DEST'"
   fi
 done