From 4221001c82844a7c6115cb61ddd82405241039f5 Mon Sep 17 00:00:00 2001 From: Alexander Miller Date: Thu, 14 Apr 2016 01:18:24 +0200 Subject: [PATCH] Makefile: Remove line continuation at end of "install" recipe Signed-off-by: Alexander Miller Signed-off-by: Michael Kerrisk --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 52df69a09..4054dcf5e 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ install: for i in man?; do \ install -d -m 755 $(DESTDIR)$(MANDIR)/"$$i" || exit $$?; \ install -m 644 "$$i"/* $(DESTDIR)$(MANDIR)/"$$i" || exit $$?; \ - done; \ + done # Check if groff reports warnings (may be words of sentences not displayed) # from http://lintian.debian.org/tags/manpage-has-errors-from-man.html