fix debian/rules clean

For some reason i don't understand, make -j4 distclean (which is
invoked by the clean target of debian/rules) fails because the
"missing" file isn't present in the source root.

this avoids that problem, using the version of missing/ found in
libtool (which is the same version in automake-1.15 as of this
writing).
This commit is contained in:
Daniel Kahn Gillmor 2016-12-18 00:35:10 +01:00
parent c6d6299275
commit 5ae937f50e
1 changed files with 3 additions and 0 deletions

3
debian/rules vendored
View File

@ -30,3 +30,6 @@ override_dh_autoreconf-indep:
override_dh_auto_configure-indep:
override_dh_auto_build-indep:
override_dh_clean:
[ -e missing ] || ln -sf /usr/share/libtool/build-aux/missing missing
dh_clean