summaryrefslogtreecommitdiff
path: root/buildtools
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
commitdcc69a03d518d17bd413d0f4119ea768faa15dfa (patch)
tree7d73e094c6a92907ff4f664738609f37bbb163b0 /buildtools
parent0d507d56b0c2f466c46530ad485068f78918d016 (diff)
downloadqpid-python-dcc69a03d518d17bd413d0f4119ea768faa15dfa.tar.gz
Revert 807114
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@807119 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildtools')
-rwxr-xr-xbuildtools/buildCreator/buildCreator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/buildCreator/buildCreator.py b/buildtools/buildCreator/buildCreator.py
index 6b9fc3c68e..0eae0b5422 100755
--- a/buildtools/buildCreator/buildCreator.py
+++ b/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