mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
bintools-wrapper: fix static check platform
This was moved in 1a5bd697ad
,
the preceding check was updated from hostPlatform to targetPlatform, but these got missed.
This commit is contained in:
parent
95f9eedf09
commit
790cc209ea
@ -52,7 +52,7 @@
|
|||||||
# Except when:
|
# Except when:
|
||||||
# - static aarch64, where compilation works, but produces segfaulting dynamically linked binaries.
|
# - static aarch64, where compilation works, but produces segfaulting dynamically linked binaries.
|
||||||
# - static armv7l, where compilation fails.
|
# - static armv7l, where compilation fails.
|
||||||
&& !(hostPlatform.isAarch && hostPlatform.isStatic)
|
&& !(targetPlatform.isAarch && targetPlatform.isStatic)
|
||||||
) "pie"
|
) "pie"
|
||||||
|
|
||||||
# Darwin code signing support utilities
|
# Darwin code signing support utilities
|
||||||
|
Loading…
Reference in New Issue
Block a user