From 5abc9cbe1ec7035bb2a16a43317b30c69c6c7afa Mon Sep 17 00:00:00 2001 From: Thomas Groman Date: Tue, 27 Apr 2021 22:21:34 -0700 Subject: fix varible conflict in make install MANPATH conflicts with system environment varible so we rename it to MANPATH2 Signed-off-by: Thomas Groman --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c949731..3551f90 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3