1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-09 17:38:52 +02:00

gnu: boost: Simplify phases.

* gnu/packages/boost.scm (boost)[arguments]: Remove unneeded '#t's from
'configure', 'build', and 'install' phases.
This commit is contained in:
Mark H Weaver
2018-03-17 23:08:07 -04:00
parent 81f6bf2d50
commit 196fb12cb8
+5 -8
View File
@@ -92,18 +92,15 @@
(invoke "./bootstrap.sh"
(string-append "--prefix=" out)
"--with-toolset=gcc")
#t)))
"--with-toolset=gcc"))))
(replace 'build
(lambda* (#:key outputs make-flags #:allow-other-keys)
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "./b2"
(format #f "-j~a" (parallel-job-count))
make-flags)
#t))
make-flags)))
(replace 'install
(lambda* (#:key outputs make-flags #:allow-other-keys)
(apply invoke "./b2" "install" make-flags)
#t)))))
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "./b2" "install" make-flags))))))
(home-page "http://www.boost.org")
(synopsis "Peer-reviewed portable C++ source libraries")