treewide: installTargets is a list

This commit is contained in:
Robin Gloster
2019-11-04 13:33:53 +01:00
committed by Jan Tojnar
parent 2157dcd141
commit 65395a7105
23 changed files with 25 additions and 27 deletions

View File

@@ -13,7 +13,7 @@ buildPythonPackage rec {
checkInputs = [ nose ];
# gcc doesn't approve of this code, so disable -Werror
NIX_CFLAGS_COMPILE = [ "-w" ] ++ stdenv.lib.optional stdenv.cc.isClang "-Wno-error=c++11-narrowing";
NIX_CFLAGS_COMPILE = "-w" + stdenv.lib.optionalString stdenv.cc.isClang " -Wno-error=c++11-narrowing";
checkPhase = "nosetests -v";