musl: pass the correct syslibdir

This fixes dynamic linking (the specfile contains the correct path, and
the dynamic loader is symlinked in place)
Fixes #8543
This commit is contained in:
Nathan Zadoks 2016-03-03 14:45:11 +01:00
parent 397a0db028
commit bf18a34f97

View File

@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
preConfigure = ''
configureFlagsArray+=("--syslibdir=$out/lib")
'';
configureFlags = [
"--enable-shared"
"--enable-static"