diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-02-25 19:05:53 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-02-25 19:05:53 +0100 |
commit | 94d173946594dc70145f855204f412314d5c02f2 (patch) | |
tree | 4150d5d26c6e9b624820ab7bbc70dbe0f5318647 /ubuntu/_base/applications/tde-guidance/debian/rules | |
parent | 420078c628b77d0ffc28c8193c9e8d1eb7517026 (diff) | |
download | tde-packaging-94d173946594dc70145f855204f412314d5c02f2.tar.gz tde-packaging-94d173946594dc70145f855204f412314d5c02f2.zip |
DEB: Make sure that python binary exists for packages that still depend on python2.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/_base/applications/tde-guidance/debian/rules')
-rwxr-xr-x | ubuntu/_base/applications/tde-guidance/debian/rules | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ubuntu/_base/applications/tde-guidance/debian/rules b/ubuntu/_base/applications/tde-guidance/debian/rules index b4a195a5c..0cbf1123b 100755 --- a/ubuntu/_base/applications/tde-guidance/debian/rules +++ b/ubuntu/_base/applications/tde-guidance/debian/rules @@ -25,6 +25,12 @@ LDFLAGS_APPEND := -L/opt/trinity/lib DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ && echo xz || echo bzip2) +post-patches:: + # make sure that python binary exists + # since the existing code is still dependent on python2 + # and cdbs uses python as the default binary name + test -x /usr/bin/python || ln -s python2 /usr/bin/python + install/tde-guidance-trinity:: # install icons to right place install -D -p -m0644 $(DEB_DESTDIR)/opt/trinity/share/apps/guidance/pics/hi32-app-daemons.png \ |