From 5b786db86c12550cfbb7564b0d3472aa6401d4ec Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 28 Jun 2019 10:38:15 +0300 Subject: gnu: atlas: All phases return #t. * gnu/packages/maths.scm (atlas)[arguments]: Ensure all custom phases return #t. --- gnu/packages/maths.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index f16e108656..5b31596041 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -3369,13 +3369,15 @@ (define-public atlas ;; 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 -- cgit v1.2.3