The fix will work for Linux and Mac, however for Windows the DDMS icons will have an invalid path. I can address the Windows DDMS issue in a next CL if necessary by merging in a different CL from upstream.
32 lines
672 B
Bash
Executable File
32 lines
672 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "### $0 executing"
|
|
|
|
function die() {
|
|
echo "Error: $*"
|
|
exit 1
|
|
}
|
|
|
|
# CD to the top android directory
|
|
D=`dirname "$0"`
|
|
cd "$D/../../../../"
|
|
|
|
DEST="development/tools/eclipse/scripts"
|
|
|
|
set -e # fail early
|
|
|
|
echo ; echo "### ADT ###" ; echo
|
|
$DEST/create_adt_symlinks.sh "$*"
|
|
echo ; echo "### COMMON ###" ; echo
|
|
$DEST/create_common_symlinks.sh "$*"
|
|
echo ; echo "### EDITORS ###" ; echo
|
|
$DEST/create_editors_symlinks.sh "$*"
|
|
echo ; echo "### DDMS ###" ; echo
|
|
$DEST/create_ddms_symlinks.sh "$*"
|
|
echo ; echo "### TEST ###" ; echo
|
|
$DEST/create_test_symlinks.sh "$*"
|
|
echo ; echo "### BRIDGE ###" ; echo
|
|
$DEST/create_bridge_symlinks.sh "$*"
|
|
|
|
echo "### $0 done"
|