3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #36763 from xeji/kore

kore: fix build with gcc7
This commit is contained in:
Graham Christensen 2018-03-10 13:16:25 -05:00 committed by GitHub
commit 486c593275
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,6 +20,9 @@ stdenv.mkDerivation rec {
makeFlags = [ "PREFIX=$(out)" ];
# added to fix build w/gcc7
NIX_CFLAGS_COMPILE = [ "-Wno-error=pointer-compare" ];
enableParallelBuilding = true;
meta = with stdenv.lib; {