Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-jhbuild
diff options
context:
space:
mode:
Diffstat (limited to 'sugar-jhbuild')
-rwxr-xr-xsugar-jhbuild6
1 files changed, 2 insertions, 4 deletions
diff --git a/sugar-jhbuild b/sugar-jhbuild
index 7990004..cfe60e5 100755
--- a/sugar-jhbuild
+++ b/sugar-jhbuild
@@ -9,13 +9,11 @@ from dependency import LibDependency
def update_jhbuild():
print 'Updating jhbuild...'
sys.path.append(os.path.join(base_dir))
- import cvs
os.chdir(build_scripts_dir)
- cvsroot = ':pserver:anonymous@anoncvs.gnome.org:/cvs/gnome'
- cvs.login(cvsroot, 'anonymous')
- cvs.checkout(cvsroot, 'jhbuild')
+ cmd = ['svn', 'co', 'svn://svn.gnome.org/svn/jhbuild/trunk', 'jhbuild']
+ os.spawnvp(os.P_WAIT, 'svn', cmd)
os.chdir(exec_dir)