diff options
author | Kefu Chai <tchaikov@gmail.com> | 2022-04-01 02:22:11 +0200 |
---|---|---|
committer | Kefu Chai <tchaikov@gmail.com> | 2022-04-01 07:14:23 +0200 |
commit | e6eee052220e78b09fab04dab27ef7901ffbe8f3 (patch) | |
tree | 720ca1eec24433d25d3fc251ad61e7779394c260 /debian/python3-ceph-argparse.install | |
parent | Merge pull request #45515 from tchaikov/wip-cxx20-fixes-rgw (diff) | |
download | ceph-e6eee052220e78b09fab04dab27ef7901ffbe8f3.tar.xz ceph-e6eee052220e78b09fab04dab27ef7901ffbe8f3.zip |
debian: install from site-packages to dist-packages
this change addresses the regression introduced by
637dd7b40404e644519b1fc3b5ef03f2d18def00
dist-packages is a debian specific directory for holding 3rd party
python modules. so install the pure python packages into it.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Diffstat (limited to '')
-rwxr-xr-x[-rw-r--r--] | debian/python3-ceph-argparse.install | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/debian/python3-ceph-argparse.install b/debian/python3-ceph-argparse.install index 274b8b4f7ea..d3339be7690 100644..100755 --- a/debian/python3-ceph-argparse.install +++ b/debian/python3-ceph-argparse.install @@ -1,2 +1,4 @@ -usr/lib/python3*/dist-packages/ceph_argparse.py -usr/lib/python3*/dist-packages/ceph_daemon.py +#! /usr/bin/dh-exec + +usr/lib/python3*/site-packages/ceph_argparse.py /usr/lib/python3/dist-packages/ +usr/lib/python3*/site-packages/ceph_daemon.py /usr/lib/python3/dist-packages/ |