Code drop from //branches/cupcake/...@124589

This commit is contained in:
The Android Open Source Project
2008-12-17 18:04:04 -08:00
parent 5c11852110
commit e943f2fd8e
659 changed files with 47382 additions and 9976 deletions

View File

@@ -3,30 +3,25 @@
echo "### $0 executing"
function die() {
echo "Error: $*"
exit 1
echo "Error: $*"
exit 1
}
D="device/tools/eclipse/scripts"
if [ -d "../$D" ]; then
cd "../$D"
else
[ "${PWD: -28}" == "$D" ] || die "Please execute this from the $D directory"
fi
# CD to the top android directory
D=`dirname "$0"`
cd "$D/../../../../"
DEST="development/tools/eclipse/scripts"
set -e # fail early
echo ; echo "### ADT ###" ; echo
./create_adt_symlinks.sh "$*"
echo ; echo "### COMMON ###" ; echo
./create_common_symlinks.sh "$*"
echo ; echo "### EDITORS ###" ; echo
./create_editors_symlinks.sh "$*"
$DEST/create_adt_symlinks.sh "$*"
echo ; echo "### DDMS ###" ; echo
./create_ddms_symlinks.sh "$*"
$DEST/create_ddms_symlinks.sh "$*"
echo ; echo "### TEST ###" ; echo
./create_test_symlinks.sh "$*"
$DEST/create_test_symlinks.sh "$*"
echo ; echo "### BRIDGE ###" ; echo
./create_bridge_symlinks.sh "$*"
$DEST/create_bridge_symlinks.sh "$*"
echo "### $0 done"