[jhbuild] [sanitycheck] Remove checks for automake 1.4 and 1.7



commit 41ddab372129541a3cb0c270e4bccb785feac8d7
Author: Frédéric Péters <fpeters 0d be>
Date:   Mon Mar 8 23:27:45 2010 +0100

    [sanitycheck] Remove checks for automake 1.4 and 1.7

 jhbuild/commands/sanitycheck.py |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)
---
diff --git a/jhbuild/commands/sanitycheck.py b/jhbuild/commands/sanitycheck.py
index d2a7d62..615c1a0 100644
--- a/jhbuild/commands/sanitycheck.py
+++ b/jhbuild/commands/sanitycheck.py
@@ -79,12 +79,6 @@ class cmd_sanitycheck(Command):
         if not check_version(['autoconf', '--version'],
                              r'autoconf \([^)]*\) ([\d.]+)', '2.53'):
             uprint(_('%s not found') % 'autoconf >= 2.53')
-        if not check_version(['automake-1.4', '--version'],
-                             r'automake \([^)]*\) ([\d.]+)', '1.4'):
-            uprint(_('%s not found') % 'automake-1.4')
-        if not check_version(['automake-1.7', '--version'],
-                             r'automake \([^)]*\) ([\d.]+)', '1.7'):
-            uprint(_('%s not found') % 'automake-1.7')
         if not check_version(['automake-1.8', '--version'],
                              r'automake \([^)]*\) ([\d.]+)', '1.8'):
             uprint(_('%s not found') % 'automake-1.8')
@@ -93,7 +87,7 @@ class cmd_sanitycheck(Command):
             uprint(_('%s not found') % 'automake-1.9')
 
         not_in_path = []
-        for amver in ('1.4', '1.7', '1.8', '1.9'):
+        for amver in ('1.8', '1.9'):
             try:
                 path = get_aclocal_path(amver)
             except:



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