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:
parent
ce5721af73
commit
dcd3238327
@ -2,7 +2,8 @@
|
|||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
BINDIR ?= ${PREFIX}/bin
|
BINDIR ?= ${PREFIX}/bin
|
||||||
DATADIR ?= ${PREFIX}/share
|
DATADIR ?= ${PREFIX}/share
|
||||||
MANPREFIX ?= ${DATADIR}/man # around for backwards compatibility
|
# around for backwards compatibility
|
||||||
|
MANPREFIX ?= ${DATADIR}/man
|
||||||
MANDIR ?= ${MANPREFIX}
|
MANDIR ?= ${MANPREFIX}
|
||||||
|
|
||||||
DOXYGEN ?= doxygen
|
DOXYGEN ?= doxygen
|
||||||
|
Loading…
x
Reference in New Issue
Block a user