about summary refs log tree commit diff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorRaphaël Hertzog <raphael@offensive-security.com>2020-08-28 18:02:18 +0200
committerRaphaël Hertzog <raphael@offensive-security.com>2020-08-28 21:34:08 +0200
commitff3c9cbd7310e1fc51b2fd7ce42aafa8c0a08a37 (patch)
treee4c76814f5e73576133d9b6930fcb28558f8b193 /GNUmakefile
parenta3cd5232503928c440f7fda19762cdf122377128 (diff)
downloadafl++-ff3c9cbd7310e1fc51b2fd7ce42aafa8c0a08a37.tar.gz
Fix installation path of manual pages
Manual pages are stored in /usr/share/man/.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index cae172dd..619a0cba 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -24,7 +24,7 @@ BIN_PATH    = $(PREFIX)/bin
 HELPER_PATH = $(PREFIX)/lib/afl
 DOC_PATH    = $(PREFIX)/share/doc/afl
 MISC_PATH   = $(PREFIX)/share/afl
-MAN_PATH    = $(PREFIX)/man/man8
+MAN_PATH    = $(PREFIX)/share/man/man8
 
 PROGNAME    = afl
 VERSION     = $(shell grep '^$(HASH)define VERSION ' ../config.h | cut -d '"' -f2)