fd64f0d26f
- Use FileInitializer (e.o#90535) - this should eliminate .sos in ~/.eclipse. - Add eclipse-filenamepatterns.txt ("*.so" currently) for above. - Symlink JNI libraries. Fri Jun 17 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.RC2.2 - Update to new naming scheme for resulting gzipped tarball. - Add patch to not generate help indices (it seems to hang). Thu Jun 16 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.RC2.1 - Import 3.1RC2. - Add RCP sub-package. Unsure about its dependencies ATM.
22 lines
900 B
Diff
22 lines
900 B
Diff
--- build.xml.orig 2005-06-07 16:53:26.000000000 -0400
|
|
+++ build.xml 2005-06-16 16:07:11.000000000 -0400
|
|
@@ -72,6 +72,20 @@
|
|
<arg line="build.sh" />
|
|
</exec>
|
|
<move file="${launcherlibs}/library/${installWs}/eclipse" todir="${launcherlibs}/" />
|
|
+
|
|
+ <delete dir="${launcherlibs}/library"/>
|
|
+
|
|
+ <!-- Copy icon for un-supported platforms -->
|
|
+ <copy file="features/org.eclipse.platform.launchers/bin/gtk/linux/x86/icon.xpm" todir="${launcherlibs}/"/>
|
|
+
|
|
+ <!-- Build JNI libs -->
|
|
+ <!-- libcore -->
|
|
+ <exec dir="plugins/org.eclipse.core.resources.linux/src" executable="make" failonerror="true"/>
|
|
+ <move file="plugins/org.eclipse.core.resources.linux/src/libcore_3_1_0.so" todir="plugins/org.eclipse.core.resources.linux/os/linux/${installArch}">
|
|
+ </move>
|
|
+ <!-- and libupdate -->
|
|
+ <ant dir="plugins/org.eclipse.update.core.linux/src" antfile="build.xml" />
|
|
+
|
|
</target>
|