diff options
author | VG <vg@devys.org> | 2016-11-03 14:56:14 +0100 |
---|---|---|
committer | VG <vg@devys.org> | 2016-11-03 14:56:14 +0100 |
commit | 08a41762979aefd92a9a550bf893a9872e162928 (patch) | |
tree | 0714d8b05a37b09091a0eeb99b88607dfb0c7609 /debian/rules | |
parent | f465fdba678542f31eef8766de92d4b729a1515e (diff) | |
download | debian-meh-08a41762979aefd92a9a550bf893a9872e162928.tar.gz debian-meh-08a41762979aefd92a9a550bf893a9872e162928.tar.bz2 debian-meh-08a41762979aefd92a9a550bf893a9872e162928.zip |
fix shlib resolver problem for stretch/sid
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 352f88c..a479493 100755 --- a/debian/rules +++ b/debian/rules @@ -13,6 +13,13 @@ PACKAGEVERSION = $(VERSION)+$(shell date +%Y%m%d%H%M%S) %: dh $@ +# avoid errors on stretch and sid builds. Error : +# dpkg-shlibdeps: error: no dependency information found for +# /usr/lib/ld-linux-armhf.so.3 (used >by debian/meh/bin/meh) +# fix by telling dh_shlibdeps it should ignore not found libs: +override_dh_shlibdeps: + dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info + # note for build: # Delete manpages installed from upstream since not gzipped, and let debian # helper do it instead. @@ -21,8 +28,8 @@ override_dh_auto_test: override_dh_auto_build: override_dh_auto_install: make -C upstream - make -C upstream install PREFIX=debian/meh - rm -f debian/meh/usr/share/man/man1/meh.1 + make -C upstream install PREFIX=../debian/meh/usr + rm -f ../debian/meh/usr/share/man/man1/meh.1 dh_installman |