mhw pushed a commit to branch core-updates
in repository guix.
commit 51b491b049b921fbfee0b06fbdd61cf2137dc926
Author: Mark H Weaver <[email protected]>
Date: Fri Mar 23 03:11:15 2018 -0400
gnu: mesa-headers: Return #t from all phases.
* gnu/packages/gl.scm (mesa-headers)[arguments]: Return #t from the
custom install phase.
---
gnu/packages/gl.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 9930de8..e01e46c 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -413,10 +413,11 @@ from software emulation to complete hardware acceleration
for modern GPUs.")
(delete 'build)
(delete 'check)
(replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (copy-recursively "include" (string-append
- (assoc-ref outputs "out")
- "/include")))))))))
+ (lambda* (#:key outputs #:allow-other-keys)
+ (copy-recursively "include" (string-append
+ (assoc-ref outputs "out")
+ "/include"))
+ #t)))))))
;;; The mesa-demos distribution contains non-free files, many files with no
;;; clear license information, and many demos that aren't useful for most