diff options
author | Ron Huang <ronhuang@gmail.com> | 2010-06-11 13:40:53 +0800 |
---|---|---|
committer | Ron Huang <ronhuang@gmail.com> | 2010-06-11 13:40:53 +0800 |
commit | 2e301c8fcf2f4d93099eb7f2687e3cb0864841f5 (patch) | |
tree | 6b95a6464256d35bf1e1a0e0f91d48ab4ca82660 | |
parent | 20871c85922619dbea7ec85c6c67254cc1a18b77 (diff) | |
download | fcgiwrap-2e301c8fcf2f4d93099eb7f2687e3cb0864841f5.tar.xz fcgiwrap-2e301c8fcf2f4d93099eb7f2687e3cb0864841f5.zip |
Create folder for man prior to the installation.
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 64b8a28..beb999f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,5 @@ targetdir = $(DESTDIR)@prefix@@sbindir@ +man8dir = $(DESTDIR)@prefix@@mandir@/man8 .PHONY: clean distclean @@ -6,6 +7,7 @@ all: fcgiwrap install: all install -d -m 755 $(targetdir) install -m 755 fcgiwrap $(targetdir) + install -d -m 755 $(man8dir) install -m 644 fcgiwrap.8 $(man8dir) fcgiwrap: fcgiwrap.c |