guix-commits
[Top][All Lists]
Advanced

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

[shepherd] 05/07: maint: Fix version checking for Guile.


From: Ludovic Courtès
Subject: [shepherd] 05/07: maint: Fix version checking for Guile.
Date: Sun, 17 Jan 2016 14:15:30 +0000

civodul pushed a commit to branch master
in repository shepherd.

commit ab062baa0b3aebbd000147116271e59cf879a84a
Author: Mathieu Lirzin <address@hidden>
Date:   Sat Jan 16 21:06:03 2016 +0100

    maint: Fix version checking for Guile.
    
    * configure.ac: Replace an ocurrence of "major-version" with
    "minor-version".
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index 6d4c64f..f89604c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,7 +24,7 @@ GUILE_PROGS
 AC_MSG_CHECKING([whether it is Guile 2.0])
 GUILE_CHECK(version_ok,
 (or (and (>= (string->number (major-version)) 2)
-         (>= (string->number (major-version)) 0))
+         (>= (string->number (minor-version)) 0))
     (quit 1))
 )
 if test $version_ok = 0; then



reply via email to

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