mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
fixed mandir
the mandir variable in the makefile should point only to the top level of the man tree.
This commit is contained in:
parent
1a10788c5f
commit
4cfcd7ba11
1 changed files with 3 additions and 3 deletions
6
Makefile
6
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue