From e20f7a8321846dd9095f114908375cd076005305 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 16 Feb 2025 10:08:02 +0100 Subject: [PATCH] Workarounding changes for wrong python prefix. Signed-off-by: Daniel Baumann --- debian/rules | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/rules b/debian/rules index 4cb8910..6673d04 100755 --- a/debian/rules +++ b/debian/rules @@ -9,6 +9,10 @@ override_dh_auto_configure: dh_auto_configure -- -Ddocs=man -Ddocs-build=true -Dpython=enabled -Dopenssl=enabled --default-library=both execute_after_dh_auto_install: + # correcting python location + mv debian/tmp/usr/local/lib/python* debian/tmp/usr/lib + rm -rf debian/tmp/usr/local + # remove empty manpages find debian/tmp/usr/share/man -type f -empty -exec rm -f {} +