From dcd3238327c684aadf6cc2a7acd439c38c212ef7 Mon Sep 17 00:00:00 2001 From: Rihards Skuja Date: Sun, 3 Feb 2019 11:24:02 +0200 Subject: [PATCH] Remove trailing spaces from MANPREFIX path Variables with trailing comments include the spaces leading up to the comment (https://www.gnu.org/software/make/manual/make.html#Flavors) so the corresponding install command looked like "install -Dm644 docs/dunst.1 $(DESTDIR)/usr/share/man /man1/dunst.1" --- config.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 2326893..9f0462d 100644 --- a/config.mk +++ b/config.mk @@ -2,7 +2,8 @@ PREFIX ?= /usr/local BINDIR ?= ${PREFIX}/bin DATADIR ?= ${PREFIX}/share -MANPREFIX ?= ${DATADIR}/man # around for backwards compatibility +# around for backwards compatibility +MANPREFIX ?= ${DATADIR}/man MANDIR ?= ${MANPREFIX} DOXYGEN ?= doxygen