diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-01-26 10:55:52 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-01-26 10:55:52 +0200 |
commit | 0d22ea82828cedbfe20e4edfaa997688ca6f3d7b (patch) | |
tree | 1377045698925ac95a5f89bacb1fd0b1ff6bdbcf /gnu/packages/engineering.scm | |
parent | 4e9c737b301900928129ebb882c51d5ec32fcce9 (diff) |
gnu: poke: Disable static library.
* gnu/packages/engineering.scm (poke)[arguments]: Adjust configure-flags
to skip the static library.
Diffstat (limited to 'gnu/packages/engineering.scm')
-rw-r--r-- | gnu/packages/engineering.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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. |