From 5ae937f50ee31fdb0832eeb5fb47190c4fdb4e70 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sun, 18 Dec 2016 00:35:10 +0100 Subject: [PATCH] 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). --- debian/rules | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/rules b/debian/rules index 5c08759..037ced4 100755 --- a/debian/rules +++ b/debian/rules @@ -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