guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: address@hidden: Use an older Texinfo.


From: Ludovic Courtès
Subject: 01/01: gnu: address@hidden: Use an older Texinfo.
Date: Fri, 7 Oct 2016 20:12:26 +0000 (UTC)

civodul pushed a commit to branch core-updates
in repository guix.

commit e052c7e1d5deaaffa0f32fa801508b6316167690
Author: Ludovic Courtès <address@hidden>
Date:   Fri Oct 7 22:06:24 2016 +0200

    gnu: address@hidden: Use an older Texinfo.
    
    * gnu/packages/gcc.scm (gcc-4.8)[native-inputs]: New field.
    (gcc-4.9): Inherit from GCC-4.7.
---
 gnu/packages/gcc.scm |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index b1c9b21..b26e93e 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -40,6 +40,7 @@
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system trivial)
   #:use-module (guix utils)
+  #:use-module (srfi srfi-1)
   #:use-module (ice-9 regex))
 
 (define %gcc-infrastructure
@@ -328,10 +329,15 @@ Go.  It also includes runtime support libraries for these 
languages.")
               (sha256
                (base32
                 "08yggr18v373a1ihj0rg2vd6psnic42b518xcgp3r9k81xz1xyr2"))
-              (patches (search-patches "gcc-arm-link-spec-fix.patch"))))))
+              (patches (search-patches "gcc-arm-link-spec-fix.patch"))))
+
+    ;; Texinfo 6.3 fails to build the manual:
+    ;;   ../../gcc-4.8.5/gcc/doc/gcc.texi:208: no matching address@hidden tex'
+    ;; Use an older one.
+    (native-inputs `(("texinfo" ,texinfo-5)))))
 
 (define-public gcc-4.9
-  (package (inherit gcc-4.8)
+  (package (inherit gcc-4.7)
     (version "4.9.4")
     (source (origin
               (method url-fetch)



reply via email to

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