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"
This commit is contained in:
Rihards Skuja 2019-02-03 11:24:02 +02:00
parent ce5721af73
commit dcd3238327
No known key found for this signature in database
GPG Key ID: 53FA13A3F7F8571B

View File

@ -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