diff options
| author | Paul Webster | 2013-03-13 16:39:12 +0000 |
|---|---|---|
| committer | Paul Webster | 2013-03-13 16:39:12 +0000 |
| commit | 413247308aadd0b08ab558a96f949672df229ddb (patch) | |
| tree | c2d6fcf3a375fc730b1a88cbbc6bfccc8afb88a9 | |
| parent | fff1db9fef0a8cb9d85f1af8930e0cface9f042e (diff) | |
| download | eclipse.platform.releng.aggregator-413247308aadd0b08ab558a96f949672df229ddb.tar.gz eclipse.platform.releng.aggregator-413247308aadd0b08ab558a96f949672df229ddb.tar.xz eclipse.platform.releng.aggregator-413247308aadd0b08ab558a96f949672df229ddb.zip | |
Bug 402052 - The eclipse file is no longer symbolically linked to the real one from the Eclipse.app folder
Use tar on the build machine to correctly pick up the symbolic link.
| -rwxr-xr-x | production/build-functions.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/production/build-functions.sh b/production/build-functions.sh index 3e81938cd..08860aa98 100755 --- a/production/build-functions.sh +++ b/production/build-functions.sh @@ -512,8 +512,10 @@ fn-gather-sdk () cp org.eclipse.sdk.ide-linux.gtk.s390x.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-linux-gtk-s390x.tar.gz cp org.eclipse.sdk.ide-linux.gtk.x86_64.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-linux-gtk-x86_64.tar.gz cp org.eclipse.sdk.ide-linux.gtk.x86.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-linux-gtk.tar.gz - cp org.eclipse.sdk.ide-macosx.cocoa.x86_64.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-macosx-cocoa-x86_64.tar.gz - cp org.eclipse.sdk.ide-macosx.cocoa.x86.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-macosx-cocoa.tar.gz + #cp org.eclipse.sdk.ide-macosx.cocoa.x86_64.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-macosx-cocoa-x86_64.tar.gz + tar cfz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-macosx-cocoa-x86_64.tar.gz -C org.eclipse.sdk.ide/macosx/cocoa/x86_64 eclipse + #cp org.eclipse.sdk.ide-macosx.cocoa.x86.tar.gz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-macosx-cocoa.tar.gz + tar cfz "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-macosx-cocoa.tar.gz -C org.eclipse.sdk.ide/macosx/cocoa/x86 eclipse cp org.eclipse.sdk.ide-solaris.gtk.sparc.zip "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-solaris-gtk.zip cp org.eclipse.sdk.ide-solaris.gtk.x86.zip "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-solaris-gtk-x86.zip cp org.eclipse.sdk.ide-win32.win32.x86_64.zip "$BUILD_DIR"/eclipse-SDK-${BUILD_ID}-win32-x86_64.zip |
