summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe <gheorghe@ca.ibm.com>2012-06-04 11:42:20 -0400
committerBogdan Gheorghe <gheorghe@ca.ibm.com>2012-06-04 11:43:07 -0400
commit75c041e8fed50729b23611e05aad5f5a2a85c706 (patch)
treeb5644a345ee66f24fb8c005ea367419e5f59c5d3
parent46b01c803afecbc35ddb8f20f180e22609d7ca34 (diff)
downloadeclipse.platform.swt-75c041e8fed50729b23611e05aad5f5a2a85c706.tar.gz
eclipse.platform.swt-75c041e8fed50729b23611e05aad5f5a2a85c706.tar.xz
eclipse.platform.swt-75c041e8fed50729b23611e05aad5f5a2a85c706.zip
Fix comment tag
-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 -->