mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: atlas: All phases return #t.
* gnu/packages/maths.scm (atlas)[arguments]: Ensure all custom phases return #t.
This commit is contained in:
parent
2668e06efd
commit
5b786db86c
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue