forked from mirrors/nixpkgs
Merge pull request #126057 from alyssais/netbsd-bintools
wrapBintoolsWith: fix final stage NetBSD
This commit is contained in:
commit
65c7bed5d2
|
@ -14,7 +14,9 @@
|
|||
if libc == null then
|
||||
null
|
||||
else if stdenvNoCC.targetPlatform.isNetBSD then
|
||||
if libc != targetPackages.netbsdCross.headers then
|
||||
if !(targetPackages ? netbsdCross) then
|
||||
netbsd.ld_elf_so
|
||||
else if libc != targetPackages.netbsdCross.headers then
|
||||
targetPackages.netbsdCross.ld_elf_so
|
||||
else
|
||||
null
|
||||
|
|
Loading…
Reference in a new issue