diff options
author | Paul A. Patience <paul@apatience.com> | 2022-04-12 18:57:43 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-04-19 12:29:44 +0200 |
commit | 3a6703268b356e42e721fc2d86edcefa6a4dde88 (patch) | |
tree | 5672e389150578d9d65b1ed386f91027107ed756 /gnu/packages/maths.scm | |
parent | 3a9b925f4437fb715d47bfa6f2356640a91b2a81 (diff) | |
download | guix-3a6703268b356e42e721fc2d86edcefa6a4dde88.tar guix-3a6703268b356e42e721fc2d86edcefa6a4dde88.tar.gz |
gnu: nomad-optimizer: Remove trailing booleans.
* gnu/packages/maths.scm (nomad-optimizer)[arguments]: Remove trailing
booleans.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 5971130136..26ce64de69 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1994,8 +1994,7 @@ interfaces.") (("^( +os_include_dirs = ).*" _ prefix) (string-append prefix "[\"../../src\"]\n")) (("^(installed_lib_dir = ).*" _ prefix) - (string-append prefix "\"" out "/lib\"\n")))) - #t)) + (string-append prefix "\"" out "/lib\"\n")))))) ;; Fix the tests so they run in out-of-source builds. (add-after 'fix-sources-for-build 'fix-sources-for-tests @@ -2060,8 +2059,7 @@ interfaces.") (string-append builddir "/src/nomad "))) (for-each (lambda (f) (fix-exe-path dir f)) - '("param1.txt" "param2.txt" "param3.txt" "param10.txt")))) - #t)) + '("param1.txt" "param2.txt" "param3.txt" "param10.txt")))))) ;; The information in the .egg-info file is not kept up to date. (add-after 'install 'delete-superfluous-egg-info @@ -2070,8 +2068,7 @@ interfaces.") (site-packages inputs outputs) "/PyNomad-0.0.0-py" (python-version (assoc-ref inputs "python")) - ".egg-info")) - #t))))) + ".egg-info"))))))) (home-page "https://www.gerad.ca/nomad/") (synopsis "Nonlinear optimization by mesh-adaptive direct search") (description |