fix varible conflict in make install MANPATH conflicts with system environment varible so we rename it to MANPATH2

Signed-off-by: Thomas Groman <tgroman@nuegia.net>
This commit is contained in:
Thomas Groman 2021-04-27 22:21:34 -07:00 committed by Felix (xq) Queißner
parent 7fc40c6bee
commit 5abc9cbe1e
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ PREFIX?=/usr/local
# Man pages by default instaled to /usr/local/share/man, like above this can
# be specified on command line.
MANPATH?=$(PREFIX)/share/man
MANPATH2?=$(PREFIX)/share/man
# What to run to install various files
INSTALL?=install
@ -15,7 +15,7 @@ INSTALL_DATA=$(INSTALL) -m 644
# Directories into which to install the various files
bindir=$(DESTDIR)$(PREFIX)/bin
sharedir=$(DESTDIR)$(PREFIX)/share
mandir=$(DESTDIR)$(MANPATH)/man1
mandir=$(DESTDIR)$(MANPATH2)/man1
MAKEDIR=mkdir -p
# Default Qmake Command For Ubuntu (and probably other Debian) distributions