mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
par: fix static build
This change causes rebuild of both glibc and musl dynamic variants, but no cascade rebuilds.
This commit is contained in:
parent
29b658e67e
commit
a5f92046ce
@ -18,7 +18,12 @@ stdenv.mkDerivation {
|
||||
})
|
||||
];
|
||||
|
||||
buildPhase = ''make -f protoMakefile'';
|
||||
makefile = "protoMakefile";
|
||||
preBuild = ''
|
||||
makeFlagsArray=+( CC="${stdenv.cc.targetPrefix}cc -c" \
|
||||
LINK1=${stdenv.cc.targetPrefix}cc \
|
||||
)
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
|
Loading…
Reference in New Issue
Block a user