commit-inetutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Inetutils branch, master, updated. inetutils-1_8-73-g0d25bc2


From: Simon Josefsson
Subject: [SCM] GNU Inetutils branch, master, updated. inetutils-1_8-73-g0d25bc2
Date: Sat, 04 Dec 2010 09:08:58 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".

The branch, master has been updated
       via  0d25bc27e33926f8794fd823f5ebea54d16c3084 (commit)
      from  17819c31287e09170f7f8ac81987078f35175b1a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=0d25bc27e33926f8794fd823f5ebea54d16c3084


commit 0d25bc27e33926f8794fd823f5ebea54d16c3084
Author: Mike Frysinger <address@hidden>
Date:   Fri Dec 3 16:12:01 2010 -0500

    man: fix install of section 8 pages
    
    Using dist_man1_MANS automatically renames all pages to foo.1 and installs
    them into man1.  So for all the section 8 pages (e.g. ftpd.8), they get
    installed into the wrong location (e.g. man1/ftpd.1).  So use the common
    dist_man_MANS var to let automake figure out the right place based on the
    suffix of the man page.
    
    Signed-off-by: Mike Frysinger <address@hidden>
    Signed-off-by: Simon Josefsson <address@hidden>

diff --git a/ChangeLog b/ChangeLog
index e5eebd9..b8e5b12 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-12-04  Mike Frysinger <address@hidden>  (tiny change)
+
+       * man/Makefile.am (dist_man1_MANS): Renamed to dist_man_MANS.
+
 2010-11-22  Mats Erik Andersson <address@hidden>
 
        * src/traceroute.c: Include "xalloc.h".
diff --git a/man/Makefile.am b/man/Makefile.am
index 1afd843..727a5e0 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -21,106 +21,106 @@ all = hostname.1 ifconfig.1 inetd.8 ftp.1 ftpd.8 logger.1 
ping.1  \
       syslogd.8 talk.1 talkd.8 telnet.1 telnetd.8 tftp.1 tftpd.8       \
       traceroute.1 uucpd.8 whois.1
 
-dist_man1_MANS =
+dist_man_MANS =
 
 if ENABLE_hostname
-dist_man1_MANS += hostname.1
+dist_man_MANS += hostname.1
 endif
 
 if ENABLE_ifconfig
-dist_man1_MANS += ifconfig.1
+dist_man_MANS += ifconfig.1
 endif
 
 if ENABLE_inetd
-dist_man1_MANS += inetd.8
+dist_man_MANS += inetd.8
 endif
 
 if ENABLE_ftp
-dist_man1_MANS += ftp.1
+dist_man_MANS += ftp.1
 endif
 
 if ENABLE_ftpd
-dist_man1_MANS += ftpd.8
+dist_man_MANS += ftpd.8
 endif
 
 if ENABLE_logger
-dist_man1_MANS += logger.1
+dist_man_MANS += logger.1
 endif
 
 if ENABLE_ping
-dist_man1_MANS += ping.1
+dist_man_MANS += ping.1
 endif
 
 if ENABLE_ping6
-dist_man1_MANS += ping6.1
+dist_man_MANS += ping6.1
 endif
 
 if ENABLE_rcp
-dist_man1_MANS += rcp.1
+dist_man_MANS += rcp.1
 endif
 
 if ENABLE_rexec
-dist_man1_MANS += rexec.1
+dist_man_MANS += rexec.1
 endif
 
 if ENABLE_rexecd
-dist_man1_MANS += rexecd.8
+dist_man_MANS += rexecd.8
 endif
 
 if ENABLE_rlogin
-dist_man1_MANS += rlogin.1
+dist_man_MANS += rlogin.1
 endif
 
 if ENABLE_rlogind
-dist_man1_MANS += rlogind.8
+dist_man_MANS += rlogind.8
 endif
 
 if ENABLE_rsh
-dist_man1_MANS += rsh.1
+dist_man_MANS += rsh.1
 endif
 
 if ENABLE_rshd
-dist_man1_MANS += rshd.8
+dist_man_MANS += rshd.8
 endif
 
 if ENABLE_syslogd
-dist_man1_MANS += syslogd.8
+dist_man_MANS += syslogd.8
 endif
 
 if ENABLE_talk
-dist_man1_MANS += talk.1
+dist_man_MANS += talk.1
 endif
 
 if ENABLE_talkd
-dist_man1_MANS += talkd.8
+dist_man_MANS += talkd.8
 endif
 
 if ENABLE_telnet
-dist_man1_MANS += telnet.1
+dist_man_MANS += telnet.1
 endif
 
 if ENABLE_telnetd
-dist_man1_MANS += telnetd.8
+dist_man_MANS += telnetd.8
 endif
 
 if ENABLE_tftp
-dist_man1_MANS += tftp.1
+dist_man_MANS += tftp.1
 endif
 
 if ENABLE_tftpd
-dist_man1_MANS += tftpd.8
+dist_man_MANS += tftpd.8
 endif
 
 if ENABLE_traceroute
-dist_man1_MANS += traceroute.1
+dist_man_MANS += traceroute.1
 endif
 
 if ENABLE_uucpd
-dist_man1_MANS += uucpd.8
+dist_man_MANS += uucpd.8
 endif
 
 if ENABLE_whois
-dist_man1_MANS += whois.1
+dist_man_MANS += whois.1
 endif
 
 EXTRA_DIST = $(all) $(all:.1=.h2m) $(all:.8=.h2m)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog       |    4 ++++
 man/Makefile.am |   52 ++++++++++++++++++++++++++--------------------------
 2 files changed, 30 insertions(+), 26 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]