Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJared Burns2002-03-05 14:40:36 +0000
committerJared Burns2002-03-05 14:40:36 +0000
commitada2556842b43428d043afc25039c01d7ecb56ac (patch)
tree2a41da715163b3653016f7f32e76fb3944addab4 /org.eclipse.debug.ui/scripts
parent54a2b2d1d6716411837628d3e1e618e573d423d2 (diff)
downloadeclipse.platform.debug-ada2556842b43428d043afc25039c01d7ecb56ac.tar.gz
eclipse.platform.debug-ada2556842b43428d043afc25039c01d7ecb56ac.tar.xz
eclipse.platform.debug-ada2556842b43428d043afc25039c01d7ecb56ac.zip
Updated build scripts
Diffstat (limited to 'org.eclipse.debug.ui/scripts')
-rw-r--r--org.eclipse.debug.ui/scripts/exportplugin.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.debug.ui/scripts/exportplugin.xml b/org.eclipse.debug.ui/scripts/exportplugin.xml
index 5356de3b1..93dfdaa65 100644
--- a/org.eclipse.debug.ui/scripts/exportplugin.xml
+++ b/org.eclipse.debug.ui/scripts/exportplugin.xml
@@ -1,12 +1,12 @@
<!-- Export a jar of .class files for the org.eclipse.debug.ui Eclipse plugin
along with other important plugin files to the "plugin-export" subdirectory
of the target Eclipse installation -->
-<project name="org.eclipse.debug.ui" default="export" basedir=".">
+<project name="org.eclipse.debug.ui" default="export" basedir="..">
<!-- Set the timestamp and important properties -->
<target name="init">
<tstamp/>
- <property name="destdir" value="../../../plugin-export" />
+ <property name="destdir" value="../../plugin-export" />
<property name="dest" value="${destdir}/org.eclipse.debug.ui" />
</target>
@@ -17,18 +17,18 @@
<mkdir dir="${dest}" />
<jar
jarfile="${dest}/dtui.jar"
- basedir="../bin"
+ basedir="bin"
/>
<!-- Create the source zip -->
<zip zipfile="${dest}/dtuisrc.zip">
- <fileset dir="../ui"/>
+ <fileset dir="ui"/>
</zip>
- <copy file="../plugin.xml" todir="${dest}"/>
- <copy file="../plugin.properties" todir="${dest}"/>
- <copy file="../.classpath" todir="${dest}"/>
- <copy file="../.options" todir="${dest}"/>
+ <copy file="plugin.xml" todir="${dest}"/>
+ <copy file="plugin.properties" todir="${dest}"/>
+ <copy file=".classpath" todir="${dest}"/>
+ <copy file=".options" todir="${dest}"/>
<copy todir="${dest}/icons">
- <fileset dir="../icons" />
+ <fileset dir="icons" />
</copy>
</target>

Back to the top