Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index 90261ad0d..bb6e6b324 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -169,6 +169,9 @@
</target>
<target name="buildNix" if="buildNix">
+
+ <fixcrlf file="${libraryFolder}/${ws}/build.sh" />
+
<!-- exec the build.sh for flavors of unix -->
<exec dir="${libraryFolder}/${ws}" executable="sh" failonerror="true">
<arg value="build.sh"/>
@@ -238,6 +241,8 @@
</target>
<target name="buildMac" if="buildMac">
+ <fixcrlf file="${libraryFolder}/${ws}/build.sh" />
+
<exec dir="${libraryFolder}/carbon" executable="sh" failonerror="true">
<arg value="build.sh"/>
<arg line="-ws ${ws} -arch ${arch}"/>

Back to the top