gnu: libfive: Snippet returns a Boolean.
Reported by Mark H Weaver <mhw@netris.org>. * gnu/packages/engineering.scm (libfive)[source](snippet): Return #t.
This commit is contained in:
parent
3d7f9cbe75
commit
b8a251d76e
|
@ -3,7 +3,7 @@
|
||||||
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2016, 2017 Theodoros Foradis <theodoros@foradis.org>
|
;;; Copyright © 2016, 2017 Theodoros Foradis <theodoros@foradis.org>
|
||||||
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
@ -583,7 +583,9 @@ as well as pick-place files.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(snippet
|
(snippet
|
||||||
;; Remove bundled catch since we provide our own.
|
;; Remove bundled catch since we provide our own.
|
||||||
'(delete-file "libfive/test/catch.hpp"))))
|
'(begin
|
||||||
|
(delete-file "libfive/test/catch.hpp")
|
||||||
|
#t))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "libfive-test"
|
`(#:test-target "libfive-test"
|
||||||
|
|
Loading…
Reference in New Issue