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:
parent
c6d6299275
commit
5ae937f50e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue