Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-02-13 23:43:44 +0000
committerslewis2005-02-13 23:43:44 +0000
commit9006adb5b828f12567da4141d23224c2d4f52690 (patch)
tree4df3b918df7fd4b3f39614c92636ba7ca0382093
parent1638793c0d0fdd0493be92b06526dc0635a67ea0 (diff)
downloadorg.eclipse.ecf-9006adb5b828f12567da4141d23224c2d4f52690.tar.gz
org.eclipse.ecf-9006adb5b828f12567da4141d23224c2d4f52690.tar.xz
org.eclipse.ecf-9006adb5b828f12567da4141d23224c2d4f52690.zip
Fix for bug 85090. Problem in eclipse-generated build.xml (absolute path to local directory). Changed path to '.', and changed @dot variable to '.'
-rw-r--r--framework/bundles/org.eclipse.ecf.provider/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/bundles/org.eclipse.ecf.provider/build.xml b/framework/bundles/org.eclipse.ecf.provider/build.xml
index 63417f912..8a71cdbd4 100644
--- a/framework/bundles/org.eclipse.ecf.provider/build.xml
+++ b/framework/bundles/org.eclipse.ecf.provider/build.xml
@@ -64,7 +64,7 @@
<pathelement path="../../plugins/org.eclipse.osgi_3.1.0/eclipseAdaptor.jar"/>
<pathelement path="../org.eclipse.ecf/bin"/>
<pathelement path="../org.eclipse.ecf/ecf.jar"/>
- <pathelement path="@dot"/>
+ <pathelement path="."/>
</classpath>
<src path="src/" />
</javac>
@@ -129,7 +129,7 @@
</target>
<target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
- <eclipse.convertPath fileSystemPath="C:/eclipse3.1m4/eclipse/workspace/org.eclipse.ecf.provider" property="resourcePath"/>
+ <eclipse.convertPath fileSystemPath="." property="resourcePath"/>
<eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
</target>

Back to the top