diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-06-10 18:28:39 +0000 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-06-10 18:28:39 +0000 |
commit | c7b4971bab4c30b1ae5cd8dd3caa2445cdfb6e86 (patch) | |
tree | 54b5f341bf9ca282a4d9e2fb1acdcd7d4a716509 /Makefile | |
parent | ed15fce22cede25a62d058e32fad1c72dea1f0f9 (diff) |
Fix setting of 'prefix' macro.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |