guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: guile-redis: Remove hard-coded Guile effective version.


From: Ricardo Wurmus
Subject: 01/02: gnu: guile-redis: Remove hard-coded Guile effective version.
Date: Wed, 14 Sep 2016 07:01:43 +0000 (UTC)

rekado pushed a commit to branch master
in repository guix.

commit ea833d301b0f4ff17dbc9403e18484a03258067e
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Sep 13 15:05:07 2016 +0200

    gnu: guile-redis: Remove hard-coded Guile effective version.
    
    * gnu/packages/guile.scm (guile-redis)[snippet]: Modify 'ac_subst_vars'
    in 'configure', and use "@GUILE_EFFECTIVE_VERSION@" instead of "2.0" in
    'Makefile.in'.
---
 gnu/packages/guile.scm |   16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 2294b16..5b8fffe 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -935,13 +935,17 @@ above command-line parameters.")
                 "0vx6if6b4r3kwx64vzbs6vpc0cpcr85x11w9vkzq27gw8n7isv56"))
               (modules '((guix build utils)))
               (snippet
-               ;; Make sure everything goes under .../site/2.0, like Guile's
+               ;; Make sure everything goes under .../site/X.Y, like Guile's
                ;; search paths expects.
-               '(substitute* '("Makefile.in"
-                               "redis/Makefile.in"
-                               "redis/commands/Makefile.in")
-                  (("moddir =.*/share/guile/site" all)
-                   (string-append all "/2.0"))))))
+               '(begin
+                  (substitute* "configure"
+                    (("ac_subst_vars='")
+                     "ac_subst_vars='GUILE_EFFECTIVE_VERSION\n"))
+                  (substitute* '("Makefile.in"
+                                 "redis/Makefile.in"
+                                 "redis/commands/Makefile.in")
+                    (("moddir =.*/share/guile/site" all)
+                     (string-append all "/@GUILE_EFFECTIVE_VERSION@")))))))
     (build-system gnu-build-system)
     (native-inputs
      `(("guile" ,guile-2.0)))



reply via email to

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