forked from mirrors/nixpkgs
Merge pull request #67644 from NixOS/busybox-static
busybox: fix static builds
This commit is contained in:
commit
f0d6a96202
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, lib, buildPackages, fetchurl
|
||||
, enableStatic ? false
|
||||
, enableMinimal ? false
|
||||
, useMusl ? stdenv.hostPlatform.libc == "musl", musl
|
||||
, useMusl ? stdenv.hostPlatform.libc == "musl"
|
||||
, extraConfig ? ""
|
||||
}:
|
||||
|
||||
|
@ -88,10 +88,6 @@ stdenv.mkDerivation rec {
|
|||
runHook postConfigure
|
||||
'';
|
||||
|
||||
postConfigure = lib.optionalString useMusl ''
|
||||
makeFlagsArray+=("CC=${stdenv.cc.targetPrefix}cc -isystem ${musl.dev}/include -B${musl}/lib -L${musl}/lib")
|
||||
'';
|
||||
|
||||
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||
|
||||
buildInputs = lib.optionals (enableStatic && !useMusl && stdenv.cc.libc ? static) [ stdenv.cc.libc stdenv.cc.libc.static ];
|
||||
|
|
Loading…
Reference in a new issue