diff options
Diffstat (limited to 'eclipse/scripts/create_adt_symlinks.sh')
-rwxr-xr-x | eclipse/scripts/create_adt_symlinks.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/eclipse/scripts/create_adt_symlinks.sh b/eclipse/scripts/create_adt_symlinks.sh index 9ea5e27..1afbb47 100755 --- a/eclipse/scripts/create_adt_symlinks.sh +++ b/eclipse/scripts/create_adt_symlinks.sh @@ -26,15 +26,17 @@ if [ "$HOST" == "Linux" ]; then for LIB in $LIBS; do ln -svf $BACK/out/host/linux-x86/framework/$LIB.jar "$DEST/" done - ln -svf $BACK/out/host/linux-x86/framework/kxml2-2.3.0.jar "$DEST/" + ln -svf $BACK/out/host/linux-x86/framework/kxml2-2.3.0.jar "$DEST/" ln -svf $BACK/out/host/linux-x86/framework/commons-compress-1.0.jar "$DEST/" + ln -svf $BACK/out/host/linux-x86/framework/groovy-all-1.6.5.jar "$DEST/" elif [ "$HOST" == "Darwin" ]; then for LIB in $LIBS; do ln -svf $BACK/out/host/darwin-x86/framework/$LIB.jar "$DEST/" done - ln -svf $BACK/out/host/darwin-x86/framework/kxml2-2.3.0.jar "$DEST/" + ln -svf $BACK/out/host/darwin-x86/framework/kxml2-2.3.0.jar "$DEST/" ln -svf $BACK/out/host/darwin-x86/framework/commons-compress-1.0.jar "$DEST/" + ln -svf $BACK/out/host/darwin-x86/framework/groovy-all-1.6.5.jar "$DEST/" elif [ "${HOST:0:6}" == "CYGWIN" ]; then for LIB in $LIBS; do @@ -49,6 +51,10 @@ elif [ "${HOST:0:6}" == "CYGWIN" ]; then cp -v "prebuilt/common/commons-compress/commons-compress-1.0.jar" "$DEST/" fi + if [ ! -f "$DEST/groovy-all-1.6.5.jar" ]; then + cp -v "prebuilt/common/groovy/groovy-all-1.6.5.jar" "$DEST/" + fi + chmod -v a+rx "$DEST"/*.jar else echo "Unsupported platform ($HOST). Nothing done." |