summaryrefslogtreecommitdiffstats
path: root/debian/rules
diff options
context:
space:
mode:
authorKefu Chai <kchai@redhat.com>2016-12-01 17:31:36 +0100
committerKefu Chai <kchai@redhat.com>2016-12-01 17:31:37 +0100
commitc80613f94b9daf165aea79767849140f1b2c56ff (patch)
tree4bd119cc5214f38ec8586425b61f5d0d5ff956be /debian/rules
parentMerge pull request #12229 from cbodley/wip-rgw-bucket-sync-status-assert (diff)
downloadceph-c80613f94b9daf165aea79767849140f1b2c56ff.tar.xz
ceph-c80613f94b9daf165aea79767849140f1b2c56ff.zip
debian: apply dh_python to python-rgw also
so the subvar of ${python:Depends} and ${python3:Depends} can be set properly. also this silences the warnings like warning: dpkg-gencontrol: Depends field of package python3-rgw: unknown substitution variable ${python3:Depends} Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules8
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules
index a3d189353fa..d0e4f48c816 100755
--- a/debian/rules
+++ b/debian/rules
@@ -139,8 +139,8 @@ override_dh_shlibdeps:
dh_shlibdeps -a --exclude=erasure-code --exclude=rados-classes --exclude=compressor
override_dh_python2:
- for binding in rados cephfs rbd; do \
- dh_python2 -p python-$$binding; \
+ for binding in rados cephfs rbd rgw; do \
+ dh_python2 -p python-$$binding; \
done
dh_python2 -p ceph-common
dh_python2 -p ceph-base
@@ -148,8 +148,8 @@ override_dh_python2:
dh_python2 -p ceph-mgr
override_dh_python3:
- for binding in rados cephfs rbd; do \
- dh_python3 -p python3-$$binding; \
+ for binding in rados cephfs rbd rgw; do \
+ dh_python3 -p python3-$$binding; \
done
dh_python3 -p python3-ceph-argparse