summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml16
1 files changed, 9 insertions, 7 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 60afb89cd9..f477ae10a3 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -526,10 +526,16 @@
<echo>Has build changes: ${build_changed} checked against ${swt_tag}</echo>
</target>
- <target name="new_build" depends="check_build_changed" if="build_changed">
+ <target name="new_build" depends="check_build_changed, check_natives_changed" if="build_changed">
<!-- Update the version files -->
<property name="increment_version_target" value="increment_version"/>
<antcall target="${increment_version_target}"/>
+
+ <!-- Update the buildnotes_swt.html file -->
+ <!--antcall target="update_buildnotes"/-->
+
+ <!-- Commit the files -->
+ <antcall target="commit_sources"/>
</target>
<target name="commit_sources" depends="get_version" if="natives_changed">
@@ -544,11 +550,11 @@
</exec>
</target>
- <target name="increment_version" depends="check_natives_changed, get_version" if="natives_changed">
+ <target name="increment_version" depends="get_version" if="natives_changed">
<antcall target="increment_version_impl"/>
</target>
- <target name="increment_release_version" depends="check_natives_changed, get_new_release_version" if="natives_changed">
+ <target name="increment_release_version" depends="get_new_release_version" if="natives_changed">
<antcall target="increment_version_impl"/>
</target>
@@ -562,10 +568,6 @@
<replace file="${repo.src}/${file_make_common}" token="min_ver=${min_ver}" value="min_ver=${new_min_ver}"/>
<replace file="${repo.src}/${file_make_common}" token="maj_ver=${maj_ver}" value="maj_ver=${new_maj_ver}"/>
<replace file="${repo.src}/${file_make_common}" token="comma_ver=${comma_ver}" value="comma_ver=${new_comma_ver}"/>
-
- <!-- Commit the files -->
- <echo>Committing version files</echo>
- <antcall target="commit_sources"/>
</target>
<!-- Params: swt_new_tag -->