summaryrefslogtreecommitdiff
path: root/qpid/buildtools/buildCreator
diff options
context:
space:
mode:
authorAidan Skinner <aidan@apache.org>2009-08-24 08:34:06 +0000
committerAidan Skinner <aidan@apache.org>2009-08-24 08:34:06 +0000
commitbcb53e9964dd8fe233c2ae36571d0d0fb3e49ac3 (patch)
treea50eb830dfcc7de5157461afd76cee94d525d0af /qpid/buildtools/buildCreator
parentcbc860e5a27c3d33ec5ec3a78cbe44f4f188ae7d (diff)
downloadqpid-python-bcb53e9964dd8fe233c2ae36571d0d0fb3e49ac3.tar.gz
Revert 807114
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@807119 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/buildtools/buildCreator')
-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 6b9fc3c68e..0eae0b5422 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 -r"+revision+" "+url+" "+targetdir
+ command = SVN_BIN+" co "+url+"@"+revision+" "+targetdir
else:
if (type == HTTP):
command = WGET_BIN+" --no-directories -P "+targetdir+" "+url