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
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

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