summaryrefslogtreecommitdiff
path: root/qpid/buildtools/buildCreator/buildCreator.py
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/buildtools/buildCreator/buildCreator.py')
-rwxr-xr-xqpid/buildtools/buildCreator/buildCreator.py2
1 files changed, 1 insertions, 1 deletions
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