changeset 4501:bb50fa3478e6

Huh? Make texinfo's automake scripts executable.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Fri, 24 Oct 2008 23:17:03 +0200
parents 79562531c2cf
children 9bf6233a37d5
files gub/specs/texinfo.py
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/texinfo.py	Fri Oct 24 21:33:22 2008 +0200
+++ b/gub/specs/texinfo.py	Fri Oct 24 23:17:03 2008 +0200
@@ -1,8 +1,9 @@
-from gub import mirrors
 from gub import toolsbuild
 
 class Texinfo__tools (toolsbuild.ToolsBuild):
-    source = mirrors.with_template (name='texinfo', version="4.11",
-                                    mirror=mirrors.gnu, format="bz2")
+    source = 'ftp://ftp.gnu.org/pub/gnu/texinfo/texinfo-4.11.tar.bz2'
+    def patch (self):
+        # for 4.11
+        self.system ('cd %(srcdir)s/buil-aux && chmod +x install-sh config.sub config.guess missing || :')
     def get_build_dependencies (self):
         return ['ncurses']