commit d8f37c773ffd11256084aec460d136491310bbbe parent f0a10e88853dd32896c2275a2165bb60b35bdd3f Author: z3bra <willyatmailoodotorg> Date: Mon Feb 1 19:48:41 2016 Rename MANPREFIX to MANDIR Diffstat: Makefile | 4 ++-- config.mk | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile @@ -15,8 +15,8 @@ clean : install : install -D -m0755 wendy ${DESTDIR}${PREFIX}/bin/wendy - install -D -m0644 wendy.1 ${DESTDIR}${MANPREFIX}/man1/wendy.1 + install -D -m0644 wendy.1 ${DESTDIR}${MANDIR}/man1/wendy.1 uninstall: rm -f ${DESTDIR}${PREFIX}/bin/wendy - rm -f ${DESTDIR}${MANPREFIX}/man1/wendy.1 + rm -f ${DESTDIR}${MANDIR}/man1/wendy.1 diff --git a/config.mk b/config.mk @@ -4,4 +4,4 @@ CFLAGS = -Wall -Wextra -pedantic LDFLAGS = PREFIX = /usr/local -MANPREFIX = ${PREFIX}/man +MANDIR = ${PREFIX}/man