Mark H Weaver writes: >> From dbf194fdfd5baf9b79ebc7ba3c60835421cce12a Mon Sep 17 00:00:00 2001 >> From: Ricardo Wurmus <rek...@elephly.net> >> Date: Sun, 1 Mar 2015 13:35:06 +0100 >> Subject: [PATCH 1/2] gnu: Add clalsadrv. >> >> * gnu/packages/audio.scm (clalsadrv): New variable. >> --- >> gnu/packages/audio.scm | 43 +++++++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 43 insertions(+) >> [...] >> + (alist-cons-after >> + 'install >> + 'install-symlink >> + (lambda _ >> + (symlink "libclalsadrv.so" >> + (string-append (assoc-ref %outputs "out") >> + "/lib/libclalsadrv.so.2"))) > > On Hydra, this 'symlink' call is failing on both x86_64 and mips64el. > See: > > http://hydra.gnu.org/build/263381/log/tail-reload > http://hydra.gnu.org/build/263382/log/tail-reload > > Can you look into it?
The problem here is that the library is not installed to /lib, but to /lib64 or /libmips64. I'll see if I can coerce it to install the library to /lib on all platforms. ~~ Ricardo