diff options
Diffstat (limited to 'java/eclipse/files/patch-build.xml')
-rw-r--r-- | java/eclipse/files/patch-build.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/java/eclipse/files/patch-build.xml b/java/eclipse/files/patch-build.xml new file mode 100644 index 000000000000..d9b351762b89 --- /dev/null +++ b/java/eclipse/files/patch-build.xml @@ -0,0 +1,30 @@ +--- build.xml.orig Mon Jun 27 21:55:26 2005 ++++ build.xml Sun Jul 17 18:50:50 2005 +@@ -63,11 +63,11 @@ + <!--unzip launcher --> + <property name="launcherlibs" value="${buildDirectory}/launchertmp" /> + <mkdir dir="${launcherlibs}" /> +- <unzip dest="${launcherlibs}"> +- <fileset dir="${buildDirectory}/plugins/org.eclipse.platform.source/src/"> +- <include name="org.eclipse.platform_*/launchersrc.zip" /> ++ <copy todir="${launcherlibs}"> ++ <fileset dir="${buildDirectory}/features/org.eclipse.platform.launchers"> ++ <include name ="**"/> + </fileset> +- </unzip> ++ </copy> + <exec dir="${launcherlibs}/library/${installWs}/" executable="sh" failonerror="true"> + <arg line="build.sh" /> + </exec> +@@ -265,7 +265,10 @@ + + <!--used to add doc plug-ins to result after initial assembly--> + <condition property="archive.format" value="tar"> +- <equals arg1="${installOs}" arg2="linux" /> ++ <or> ++ <equals arg1="${installOs}" arg2="linux" /> ++ <equals arg1="${installOs}" arg2="freebsd" /> ++ </or> + </condition> + <property name="archive.format" value="zip" /> + </target> |