From 4cfcd7ba116ddd3e1c80744b4eb7e0b83438ec86 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 9 Oct 2009 11:10:49 -0500 Subject: [PATCH] fixed mandir the mandir variable in the makefile should point only to the top level of the man tree. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 367eaa7..eab706a 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ INSTALL ?= install PREFIX ?= /usr/local -MANDIR ?= $(PREFIX)/share/man/man8 BINDIR ?= $(PREFIX)/bin +MANDIR ?= $(PREFIX)/share/man AUDIO ?= portaudio @@ -29,9 +29,9 @@ all: espeakup install: espeakup $(INSTALL) -d $(DESTDIR)$(BINDIR) - $(INSTALL) -d $(DESTDIR)$(MANDIR) + $(INSTALL) -d $(DESTDIR)$(MANDIR)/man8 $(INSTALL) $< $(DESTDIR)$(BINDIR) - $(INSTALL) espeakup.8 $(DESTDIR)$(MANDIR) + $(INSTALL) espeakup.8 $(DESTDIR)$(MANDIR)/man8 clean: $(RM) *.d *.o