mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +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 = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
|
Loading…
Reference in New Issue
Block a user