pfixtools: patch to work with gcc 6

Progress on: #28643
fixes #28984
This commit is contained in:
Matt McHenry
2017-09-04 18:37:01 +01:00
committed by Jörg Thalheim
parent fc391e7ecd
commit dbf97a5afe
+2 -1
View File
@@ -40,7 +40,7 @@ stdenv.mkDerivation {
--replace /bin/bash ${bash}/bin/bash;
'';
NIX_CFLAGS_COMPILE = "-Wno-error=unused-result";
NIX_CFLAGS_COMPILE = "-Wno-error=unused-result -Wno-error=nonnull-compare";
makeFlags = "DESTDIR=$(out) prefix=";
@@ -49,5 +49,6 @@ stdenv.mkDerivation {
license = with lib.licenses; [ bsd3 ];
homepage = https://github.com/Fruneau/pfixtools;
platforms = stdenv.lib.platforms.linux;
maintainers = with lib.maintainers; [ jerith666 ];
};
}