summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-06-10 18:28:39 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-06-10 18:28:39 +0000
commitc7b4971bab4c30b1ae5cd8dd3caa2445cdfb6e86 (patch)
tree54b5f341bf9ca282a4d9e2fb1acdcd7d4a716509 /Makefile
parented15fce22cede25a62d058e32fad1c72dea1f0f9 (diff)
Fix setting of 'prefix' macro.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d28660d2..90476eef 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,8 @@
# Do "make install" to copy the pages to their destination.
# Do "make gz" or "make bz2" first if you use compressed source pages.
-MANDIR=$(prefix)/usr/share/man
+prefix?=/usr
+MANDIR=$(prefix)/share/man
GZIP=gzip -9
BZIP2=bzip2 -9