3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: atlas: All phases return #t.

* gnu/packages/maths.scm (atlas)[arguments]: Ensure all custom phases
return #t.
This commit is contained in:
Efraim Flashner 2019-06-28 10:38:15 +03:00
parent 2668e06efd
commit 5b786db86c
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3369,13 +3369,15 @@ packages.")
;; Use `sh', not `/bin/sh'.
(substitute* (find-files "." "Makefile|configure|SpewMakeInc\\.c")
(("/bin/sh")
"sh"))))
"sh"))
#t))
;; Fix /bin/sh in generated make files.
(add-after 'configure 'fix-/bin/sh-in-generated-files
(lambda _
(substitute* (find-files "." "^[Mm]ake\\.inc.*")
(("/bin/sh")
"sh"))))
"sh"))
#t))
;; ATLAS configure program does not accepts the default flags
;; passed by the 'gnu-build-system'.
(replace 'configure