1
0
Fork 0

Making workaround for certain meson versions conditional in rules to fix (now) FTBFS in sid (Closes: #1051722).

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 10:09:41 +01:00
parent a9cd785dd5
commit aee9dcb45d
Signed by: daniel
GPG key ID: FBB4F0E80A80222F

7
debian/rules vendored
View file

@ -10,8 +10,11 @@ override_dh_auto_configure:
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
if [ -e debian/tmp/usr/local/lib ]; \
then \
mv debian/tmp/usr/local/lib/python* debian/tmp/usr/lib; \
rm -rf debian/tmp/usr/local; \
fi
# remove empty manpages
find debian/tmp/usr/share/man -type f -empty -exec rm -f {} +