guix-commits
[Top][All Lists]
Advanced

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

01/10: gnu: lightning: Omit static library.


From: guix-commits
Subject: 01/10: gnu: lightning: Omit static library.
Date: Tue, 29 Nov 2022 06:24:02 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 7e3becd791eaede35d75ab4b02b525371f4e2c5a
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Nov 13 01:00:01 2022 +0100

    gnu: lightning: Omit static library.
    
    * gnu/packages/assembly.scm (lightning)[arguments]: Add "--disable-static"
    to #:configure-flags.
---
 gnu/packages/assembly.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 8a899f0020..7e36bbcc71 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -144,8 +144,10 @@ debugging information in STABS, DWARF 2, and CodeView 8 
formats.")
     (build-system gnu-build-system)
     (native-inputs (list zlib))
     (arguments
-     ;; Some tests fail when run in parallel.
-     `(#:parallel-tests? #f))
+     `(#:configure-flags
+       (list "--disable-static")
+       ;; Some tests fail when run in parallel.
+       #:parallel-tests? #f))
     (synopsis "Library for generating assembly code at runtime")
     (description
      "GNU Lightning is a library that generates assembly language code at



reply via email to

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