summaryrefslogtreecommitdiff
path: root/qpid/python/setup.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2013-05-01 17:04:31 +0000
committerRafael H. Schloming <rhs@apache.org>2013-05-01 17:04:31 +0000
commit34d94adf61de834de23662453cc321071df3340c (patch)
treed6e88ee169bea704dc8c02d019b404ee6c9d885a /qpid/python/setup.py
parentefcb5917848b17fcb10d82daf5e20cb2e7f0e1f6 (diff)
downloadqpid-python-34d94adf61de834de23662453cc321071df3340c.tar.gz
QPID-4798: switched python client over to using stripped XML
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1478093 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/setup.py')
-rwxr-xr-xqpid/python/setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/setup.py b/qpid/python/setup.py
index 5afa913183..bc8c3e3fa4 100755
--- a/qpid/python/setup.py
+++ b/qpid/python/setup.py
@@ -279,7 +279,7 @@ class install_lib(_install_lib):
outputs = _install_lib.get_outputs(self)
extra = []
for of in outputs:
- if os.path.basename(of) == "amqp-0-10-qpid-errata.xml":
+ if os.path.basename(of) == "amqp-0-10-qpid-errata-stripped.xml":
extra.append(pclfile(of))
return outputs + extra
@@ -287,7 +287,7 @@ class install_lib(_install_lib):
outfiles = _install_lib.install(self)
extra = []
for of in outfiles:
- if os.path.basename(of) == "amqp-0-10-qpid-errata.xml":
+ if os.path.basename(of) == "amqp-0-10-qpid-errata-stripped.xml":
tgt = pclfile(of)
if self.force or newer(of, tgt):
log.info("caching %s to %s" % (of, os.path.basename(tgt)))