[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: lash: Don't build static libraries.
From: |
Efraim Flashner |
Subject: |
02/02: gnu: lash: Don't build static libraries. |
Date: |
Sun, 12 Nov 2017 05:05:14 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit b07bfd06ee8fa2ac5a85fd3861bb4ca31429c3b0
Author: Efraim Flashner <address@hidden>
Date: Sun Nov 12 11:56:57 2017 +0200
gnu: lash: Don't build static libraries.
* gnu/packages/audio.scm (lash)[arguments]: Add configure-flag to
disable static libraries.
---
gnu/packages/audio.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 4f76bde..ea57f96 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1517,7 +1517,8 @@ to be plugged into a wide range of audio synthesis and
recording packages.")
(lambda _
(substitute* '("Makefile.am" "Makefile.in")
(("lashd ") ""))
- #t)))))
+ #t)))
+ #:configure-flags '("--disable-static")))
(inputs
`(("bdb" ,bdb)
("gtk" ,gtk+-2)