mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
Merge pull request #187161 from K900/fix-eval
build-fhs-userenv-bubblewrap: fix eval
This commit is contained in:
commit
3643cde373
@ -22,7 +22,7 @@
|
||||
# /lib will link to /lib32
|
||||
|
||||
let
|
||||
inherit (stdenv) is64Bit;
|
||||
inherit (stdenv) is64bit;
|
||||
|
||||
# use of glibc_multi is only supported on x86_64-linux
|
||||
isMultiBuild = multiPkgs != null && stdenv.isx86_64 && stdenv.isLinux;
|
||||
@ -141,7 +141,7 @@ let
|
||||
setupLibDirsTarget = ''
|
||||
# link content of targetPaths
|
||||
cp -rsHf ${staticUsrProfileTarget}/lib lib
|
||||
ln -s lib lib${if is64Bit then "64" else "32"}
|
||||
ln -s lib lib${if is64bit then "64" else "32"}
|
||||
'';
|
||||
|
||||
# setup /lib, /lib32 and /lib64
|
||||
|
Loading…
Reference in New Issue
Block a user