guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: libdatrie: Turn configure flags into a gexp.


From: guix-commits
Subject: 02/02: gnu: libdatrie: Turn configure flags into a gexp.
Date: Thu, 8 Jul 2021 08:15:51 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit f670c11c5b7f5799d0838caa2af07e88f489f625
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Jul 8 14:15:20 2021 +0200

    gnu: libdatrie: Turn configure flags into a gexp.
    
    * gnu/packages/gtk.scm (libdatrie)[arguments]: Turn #:configure-flags
    into a gexp.
---
 gnu/packages/gtk.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index f8961de..a90db08 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -45,6 +45,7 @@
 
 (define-module (gnu packages gtk)
   #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix gexp)
   #:use-module (guix utils)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -276,15 +277,13 @@ output.  Experimental backends include OpenGL, BeOS, 
OS/2, and DirectFB.")
     (build-system gnu-build-system)
     (outputs '("out" "doc"))
     (arguments
-     `(#:configure-flags
-       (list
-        (string-append "--with-html-docdir="
-                       (assoc-ref %outputs "doc")
-                       "/share/doc/datrie/html"))
+     (list #:configure-flags
+           #~(list (string-append "--with-html-docdir=" #$output:doc
+                                  "/share/doc/datrie/html"))
 
-       ;; Several tests refer to the 'test.tri' file, leading to race
-       ;; conditions when running tests in parallel.
-       #:parallel-tests? #f))
+           ;; Several tests refer to the 'test.tri' file, leading to race
+           ;; conditions when running tests in parallel.
+           #:parallel-tests? #f))
     (native-inputs
      `(("doxygen" ,doxygen)
        ("pkg-config" ,pkg-config)))



reply via email to

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