diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 03:12:07 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:42:59 -0400 |
commit | feb0804376a116b90e559e30a36ccba2ed5f69f1 (patch) | |
tree | a13341af38a6251951781f6433381e4ba9e87945 /gnu/packages/gl.scm | |
parent | 51b491b049b921fbfee0b06fbdd61cf2137dc926 (diff) | |
download | patches-feb0804376a116b90e559e30a36ccba2ed5f69f1.tar patches-feb0804376a116b90e559e30a36ccba2ed5f69f1.tar.gz |
gnu: mesa-utils: Return #t from all phases.
* gnu/packages/gl.scm (mesa-utils)[arguments]: Return #t from the custom
install phase.
Diffstat (limited to 'gnu/packages/gl.scm')
-rw-r--r-- | gnu/packages/gl.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index e01e46cdd1..35db95b4f0 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -454,7 +454,8 @@ from software emulation to complete hardware acceleration for modern GPUs.") (lambda (file) (copy-file file (string-append out "/bin/" (basename file)))) '("src/xdemos/glxdemo" "src/xdemos/glxgears" - "src/xdemos/glxinfo" "src/xdemos/glxheads")))))))) + "src/xdemos/glxinfo" "src/xdemos/glxheads")) + #t)))))) (home-page "http://mesa3d.org/") (synopsis "Utility tools for Mesa") (description |