diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-06-18 13:16:01 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-06-19 15:02:48 +0100 |
commit | b99283396994615d891263c5b4a549c22a19d6c5 (patch) | |
tree | fb8629b1c50b274eff1ae62d50e47995d4fc75d9 | |
parent | 0d3304af3806a28d7756fba9d4eb714339c3eaf1 (diff) | |
download | cygnal-b99283396994615d891263c5b4a549c22a19d6c5.tar.gz cygnal-b99283396994615d891263c5b4a549c22a19d6c5.tar.bz2 cygnal-b99283396994615d891263c5b4a549c22a19d6c5.zip |
winsup/doc: Fix command to create man3 install directory
Fix a cut and paste error in the command to create the man3 install directory,
added in 94f16969
2015-06-19 Jon Turney <jon.turney@dronecode.org.uk>
* Makefile.in (install-man): Fix command to create man3 install
directory.
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r-- | winsup/doc/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/doc/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog index 4077ec2e0..2d9e26852 100644 --- a/winsup/doc/ChangeLog +++ b/winsup/doc/ChangeLog @@ -1,3 +1,8 @@ +2015-06-19 Jon Turney <jon.turney@dronecode.org.uk> + + * Makefile.in (install-man): Fix command to create man3 install + directory. + 2015-06-17 Jon Turney <jon.turney@dronecode.org.uk> * man.xsl: New file. diff --git a/winsup/doc/Makefile.in b/winsup/doc/Makefile.in index 60b375a17..0205e67f9 100644 --- a/winsup/doc/Makefile.in +++ b/winsup/doc/Makefile.in @@ -81,7 +81,7 @@ install-html: cygwin-ug-net/cygwin-ug-net.html cygwin-api/cygwin-api.html install-man: utils2man.stamp api2man.stamp @$(MKDIRP) $(DESTDIR)$(man1dir) $(INSTALL_DATA) *.1 $(DESTDIR)$(man1dir) - @$(MKDIRP) $(DESTDIR)$(man1dir) + @$(MKDIRP) $(DESTDIR)$(man3dir) $(INSTALL_DATA) *.3 $(DESTDIR)$(man3dir) cygwin-ug-net/cygwin-ug-net-nochunks.html.gz : $(cygwin-ug-net_SOURCES) html.xsl |