From 9f594f62d09bfb7efcc1ec6697fe93db54bbdb11 Mon Sep 17 00:00:00 2001 From: Aidan Skinner Date: Mon, 24 Aug 2009 08:42:28 +0000 Subject: Use co -r instead of URL@REV git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@807124 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/buildtools/buildCreator/buildCreator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qpid/buildtools/buildCreator/buildCreator.py b/qpid/buildtools/buildCreator/buildCreator.py index 0eae0b5422..6b9fc3c68e 100755 --- a/qpid/buildtools/buildCreator/buildCreator.py +++ b/qpid/buildtools/buildCreator/buildCreator.py @@ -1112,7 +1112,7 @@ def downloadSource(source, destination): command = SVN_BIN+" co "+url+" "+targetdir if (source.getElementsByTagName(REVISION).length > 0): revision = getValue(source.getElementsByTagName(REVISION)[0]) - command = SVN_BIN+" co "+url+"@"+revision+" "+targetdir + command = SVN_BIN+" co -r"+revision+" "+url+" "+targetdir else: if (type == HTTP): command = WGET_BIN+" --no-directories -P "+targetdir+" "+url -- cgit v1.2.1