Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2010-02-02 21:30:50 +0000
committerAndrew Niefer2010-02-02 21:30:50 +0000
commitcbf271a45e84801f8a55860384c9a1b3d8ede169 (patch)
tree47891288c6a9ce8c744505a9338872a83d7d49a0
parent2a7697713c45e1f8cb8111cebe8ab2603ed93ccc (diff)
downloadrt.equinox.framework-cbf271a45e84801f8a55860384c9a1b3d8ede169.tar.gz
rt.equinox.framework-cbf271a45e84801f8a55860384c9a1b3d8ede169.tar.xz
rt.equinox.framework-cbf271a45e84801f8a55860384c9a1b3d8ede169.zip
building with ssh keys
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index a83c54e62..db713860a 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -9,8 +9,9 @@
IBM Corporation - initial API and implementation
-->
<project name="Launcher Build" basedir="." default="build">
-
- <property name="cvsRoot" value=":pserver:anonymous@dev.eclipse.org:/cvsroot/rt" />
+ <property name="cvsLogin" value=":pserver:anonymous" />
+ <property name="cvsRoot" value="${cvsLogin}@dev.eclipse.org:/cvsroot/rt" />
+ <property name="cvsrsh" value="ssh" />
<property name="cvsExecutablePath" value="org.eclipse.equinox/framework/bundles/org.eclipse.equinox.executable" />
<property name="cvsTag" value="HEAD" />
@@ -79,7 +80,7 @@
<!-- fetch the source and put it in a folder unique to this platform so we don't interfere with other
compiles if the working folder is shared accross multiple machines -->
<delete dir="${basedir}/${os}.${ws}.${arch}/library" failonerror="false"/>
- <cvs command="export -d ${os}.${ws}.${arch}/library" tag="${cvsTag}" package="${cvsExecutablePath}/library" cvsRoot="${cvsRoot}" dest="${basedir}" quiet="true" failonerror="true"/>
+ <cvs command="export -d ${os}.${ws}.${arch}/library" tag="${cvsTag}" cvsrsh="${cvsRsh}" package="${cvsExecutablePath}/library" cvsRoot="${cvsRoot}" dest="${basedir}" quiet="true" failonerror="true"/>
</target>
<target name="buildNix" if="buildNix">

Back to the top