This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc 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]

GNU C Library master sources branch gentoo/2.22 updated. glibc-2.22-20-g0acbb93


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 C Library master sources".

The branch, gentoo/2.22 has been updated
       via  0acbb93ebb8cf2a646cc2b685cd13b22d52f1e27 (commit)
      from  9ab172e7f88096d12a8a089ff2ef857d9a6cab38 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0acbb93ebb8cf2a646cc2b685cd13b22d52f1e27

commit 0acbb93ebb8cf2a646cc2b685cd13b22d52f1e27
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Wed Feb 22 21:12:28 2006 -0500

    manual: skip build when perl is unavailable
    
    Do not try to generate the manual when perl is unavailable.  This
    matches the behavior when makeinfo is unavailable.  Otherwise the
    install step fails when trying to generate the libm section since
    it runs a perl script.
    
    (cherry picked from commit 1695cdae065fa3693e7b18169a100f53444eac69)

diff --git a/manual/Makefile b/manual/Makefile
index 5382208..cdb6763 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -172,6 +172,8 @@ include ../Rules
 
 .PHONY: install subdir_install install-data
 install-data subdir_install: install
+# libm-err.texi generation requires perl.
+ifneq ($(PERL),no)
 ifneq ($(strip $(MAKEINFO)),:)
 install: $(inst_infodir)/libc.info
 	@if $(SHELL) -c '$(INSTALL_INFO) --version' >/dev/null 2>&1; then \
@@ -179,6 +181,7 @@ install: $(inst_infodir)/libc.info
 	 $(INSTALL_INFO) --info-dir=$(inst_infodir) $(inst_infodir)/libc.info;\
 	else : ; fi
 endif
+endif
 # Catchall implicit rule for other installation targets from the parent.
 install-%: ;
 

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

Summary of changes:
 manual/Makefile |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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