Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine2005-10-28 14:07:05 +0000
committerVeronika Irvine2005-10-28 14:07:05 +0000
commit63c21fba3a08687c342447d29fa7e4371c20c880 (patch)
tree4c8dcf176192d4a37e2617ab7dabc4257a97b3f9 /bundles/org.eclipse.swt/build.xml
parent2cd9c142b2dc2cb5847c910c44c758dfcfaf6ef3 (diff)
downloadeclipse.platform.swt-63c21fba3a08687c342447d29fa7e4371c20c880.tar.gz
eclipse.platform.swt-63c21fba3a08687c342447d29fa7e4371c20c880.tar.xz
eclipse.platform.swt-63c21fba3a08687c342447d29fa7e4371c20c880.zip
Adding support for qualifier to build scriptsqualifier_test_3_2
Diffstat (limited to 'bundles/org.eclipse.swt/build.xml')
-rw-r--r--bundles/org.eclipse.swt/build.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/build.xml b/bundles/org.eclipse.swt/build.xml
index 276265551f..827b6c338d 100644
--- a/bundles/org.eclipse.swt/build.xml
+++ b/bundles/org.eclipse.swt/build.xml
@@ -3,8 +3,8 @@
<target name="init">
<property name="plugin" value="org.eclipse.swt"/>
- <property name="version.suffix" value="_3.1.0"/>
- <property name="full.name" value="${plugin}${version.suffix}"/>
+ <property name="version.suffix" value="3.1.0"/>
+ <property name="full.name" value="${plugin}_${version.suffix}"/>
<property name="temp.folder" value="${basedir}/temp.folder"/>
<property name="plugin.destination" value="${basedir}"/>
<property name="build.result.folder" value="${basedir}"/>
@@ -25,6 +25,7 @@
<copy todir="${destination.temp.folder}/${full.name}">
<fileset dir="${basedir}" includes="plugin.properties,about.html,META-INF/" />
</copy>
+ <eclipse.versionReplacer path="${destination.temp.folder}/${full.name}" version="${version.suffix}"/>
</target>
<target name="build.jars" />

Back to the top