[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: poke: Disable static library.
From: |
guix-commits |
Subject: |
02/02: gnu: poke: Disable static library. |
Date: |
Thu, 26 Jan 2023 04:27:08 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 0d22ea82828cedbfe20e4edfaa997688ca6f3d7b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Jan 26 10:55:52 2023 +0200
gnu: poke: Disable static library.
* gnu/packages/engineering.scm (poke)[arguments]: Adjust configure-flags
to skip the static library.
---
gnu/packages/engineering.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 7bed3c52cb..ff997a140d 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -2901,7 +2901,9 @@ program that can perform mesh processing tasks in batch
mode, without a GUI.")
(arguments
;; To build the GUI, add the `--enable-gui' configure flag.
;; To enable the "hyperlink server", add the `--enable-hserver' flag.
- `(#:configure-flags '("--enable-mi")))
+ `(#:configure-flags
+ '("--enable-mi"
+ "--disable-static")))
(home-page "https://www.gnu.org/software/poke/#documentation")
(synopsis "Editing of arbitrary binary data")
(description "GNU poke is an interactive, extensible editor for binary
data.