openblas: adjust makeFlags handling

This commit is contained in:
Averell Dalton 2019-02-22 19:46:58 +01:00 committed by Frederik Rietdijk
parent 34beeb7d51
commit d7806fe4ed

View File

@ -126,7 +126,8 @@ stdenv.mkDerivation rec {
NO_STATIC = true; NO_STATIC = true;
CROSS = stdenv.hostPlatform != stdenv.buildPlatform; CROSS = stdenv.hostPlatform != stdenv.buildPlatform;
HOSTCC = "cc"; HOSTCC = "cc";
NO_BINARY_MODE = stdenv.hostPlatform != stdenv.buildPlatform; # Makefile.system only checks defined status
NO_BINARY_MODE = toString (stdenv.hostPlatform != stdenv.buildPlatform);
}); });
doCheck = true; doCheck = true;