diff options
author | Kefu Chai <kchai@redhat.com> | 2016-12-01 17:31:36 +0100 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2016-12-01 17:31:37 +0100 |
commit | c80613f94b9daf165aea79767849140f1b2c56ff (patch) | |
tree | 4bd119cc5214f38ec8586425b61f5d0d5ff956be /debian/rules | |
parent | Merge pull request #12229 from cbodley/wip-rgw-bucket-sync-status-assert (diff) | |
download | ceph-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-x | debian/rules | 8 |
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 |