From bece9378074f66bc595141b39aff41cda98c248a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20COUDERC?= Date: Mon, 5 Mar 2018 10:00:50 +0100 Subject: [PATCH] Work around make warnings due to dh >= 11 injecting --strip-program=true for all uses of --- Makefile.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.inc b/Makefile.inc index a85917f..13bc46f 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -1,4 +1,7 @@ INSTALL=install INSTALL_PROGRAM=$(INSTALL) -INSTALL_DATA=$(INSTALL) -m 644 +# Don't use $(INSTALL) for data as debhelper >= 11 injects +# --strip-program=true which is specific to non-data files +#INSTALL_DATA=$(INSTALL) -m 644 +INSTALL_DATA=install -m 644