From: Kefu Chai Date: Thu, 1 Dec 2016 16:31:36 +0000 (+0800) Subject: debian: apply dh_python to python-rgw also X-Git-Tag: v11.1.0~66^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c80613f94b9daf165aea79767849140f1b2c56ff;p=ceph.git 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 --- diff --git a/debian/rules b/debian/rules index a3d189353fa74..d0e4f48c8168d 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