This is the mail archive of the cygwin-cvs@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[newlib-cygwin] winsup/doc: Fix command to create man3 install directory


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=b99283396994615d891263c5b4a549c22a19d6c5

commit b99283396994615d891263c5b4a549c22a19d6c5
Author: Jon TURNEY <jon.turney@dronecode.org.uk>
Date:   Thu Jun 18 13:16:01 2015 +0100

    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>

Diff:
---
 winsup/doc/ChangeLog   | 5 +++++
 winsup/doc/Makefile.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog
index 4077ec2..2d9e268 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 60b375a..0205e67 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]