summaryrefslogtreecommitdiff
path: root/qpid/buildtools
diff options
context:
space:
mode:
authorAidan Skinner <aidan@apache.org>2009-08-24 08:24:25 +0000
committerAidan Skinner <aidan@apache.org>2009-08-24 08:24:25 +0000
commitcbc860e5a27c3d33ec5ec3a78cbe44f4f188ae7d (patch)
tree5d13907494fbb9b4aa7881944aeb2fd9bb7a9110 /qpid/buildtools
parentafa7ae0752404519bd756b31b5fa39a98bc02cdb (diff)
downloadqpid-python-cbc860e5a27c3d33ec5ec3a78cbe44f4f188ae7d.tar.gz
Use co -r instead of URL@REV
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@807114 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/buildtools')
-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