diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm index ebfe2a82bf..f7e90b4a77 100644 --- a/gnu/packages/boost.scm +++ b/gnu/packages/boost.scm @@ -92,18 +92,15 @@ (define-public boost (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")