guix-commits
[Top][All Lists]
Advanced

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

02/02: build: 'guilemoduledir' honors $GUILE_EFFECTIVE_VERSION.


From: Ludovic Courtès
Subject: 02/02: build: 'guilemoduledir' honors $GUILE_EFFECTIVE_VERSION.
Date: Tue, 25 Oct 2016 12:01:30 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 301d73f68c791d659f752595ae32db015be0216a
Author: Ludovic Courtès <address@hidden>
Date:   Tue Oct 25 14:00:33 2016 +0200

    build: 'guilemoduledir' honors $GUILE_EFFECTIVE_VERSION.
    
    * configure.ac: Define 'guilemoduledir' as a function of
    $GUILE_EFFECTIVE_VERSION.
---
 configure.ac |    9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/configure.ac b/configure.ac
index 3b33f85..34f1323 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,9 +21,6 @@ AC_USE_SYSTEM_EXTENSIONS
 AM_GNU_GETTEXT([external])
 AM_GNU_GETTEXT_VERSION([0.18.1])
 
-guilemoduledir="${datarootdir}/guile/site/2.0"
-AC_SUBST([guilemoduledir])
-
 GUIX_SYSTEM_TYPE
 GUIX_ASSERT_SUPPORTED_SYSTEM
 
@@ -77,7 +74,7 @@ m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
 m4_pattern_forbid([^GUILE_P$])
 
 dnl Search for 'guile' and 'guild'.  Prefer 2.0 until the 2.2 upgrade is
-dnl complete.
+dnl complete.  This macro defines 'GUILE_EFFECTIVE_VERSION'.
 GUILE_PKG([2.0 2.2])
 GUILE_PROGS
 if test "x$GUILD" = "x"; then
@@ -90,6 +87,10 @@ else
   AC_MSG_WARN([Guile $GUILE_EFFECTIVE_VERSION is not fully supported!])
 fi
 
+dnl Installation directory for .scm and .go files.
+guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION"
+AC_SUBST([guilemoduledir])
+
 dnl guile-json is used for the PyPI package importer
 GUILE_MODULE_AVAILABLE([have_guile_json], [(json)])
 AM_CONDITIONAL([HAVE_GUILE_JSON], [test "x$have_guile_json" = "xyes"])



reply via email to

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