$OpenBSD: patch-build_xml,v 1.1 2005/08/09 14:49:09 kurt Exp $
--- build.xml.orig	Mon Jun 27 14:55:26 2005
+++ build.xml	Sat Aug  6 15:52:27 2005
@@ -57,17 +57,15 @@
 		<mkdir dir="${swtdir}" />
 		<move todir="${swtdir}/">
 			<fileset dir="${swtlibs}">
-				<include name="**/*.so" />
+				<include name="**/*.so.*" />
 			</fileset>
 		</move>
 		<!--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" />
-			</fileset>
-		</unzip>
+		<copy todir="${launcherlibs}">
+			<fileset dir="${buildDirectory}/features/org.eclipse.platform.launchers" includes="**" excludes="**/*.orig"/>
+		</copy>
 		<exec dir="${launcherlibs}/library/${installWs}/" executable="sh" failonerror="true">
 			<arg line="build.sh" />
 		</exec>
@@ -246,6 +244,7 @@
 		<property name="javacSource" value="1.3" />
 		<property name="javacTarget" value="1.2" />
 		<property name="javacDebugInfo" value="true" />
+		<property name="javacVerbose" value="false" />
 		<property name="javacFailOnError" value="true" />
 
 		<!--required property setting to build bundles in Eclipse 3.x stream builds -->
@@ -265,7 +264,7 @@
 
 		<!--used to add doc plug-ins to result after initial assembly-->
 		<condition property="archive.format" value="tar">
-			<equals arg1="${installOs}" arg2="linux" />
+			<equals arg1="${installOs}" arg2="openbsd" />
 		</condition>
 		<property name="archive.format" value="zip" />
 	</target>
