blob: 1e28619d9a82ed348de246474b33dc80d7bac81f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# - install into Gentoo/FHS doc dir
--- at-3.1.14/Makefile.in
+++ at-3.1.14/Makefile.in
@@ -12,8 +12,11 @@
man1dir = $(mandir)/man1
man5dir = $(mandir)/man5
man8dir = $(mandir)/man8
-docdir = $(prefix)/doc
-atdocdir = $(docdir)/at
+ifndef PF
+PF = at-$(VERSION)
+endif
+docdir = $(prefix)/share/doc
+atdocdir = $(docdir)/$(PF)
etcdir = @ETCDIR@
systemdsystemunitdir = @systemdsystemunitdir@
|