remove all references to stdenv.cc.cc.is{GNU,Clang}
use the new `stdenv.cc.is{GNU,Clang}` instead, which will always be
defined.
This commit is contained in:
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||
makeFlags = [
|
||||
"SHELL=${stdenv.shell}"
|
||||
"INSTALL_ROOT=$(out)"
|
||||
] ++ optional (stdenv.cc.cc.isClang or false) "CC=clang";
|
||||
] ++ optional stdenv.cc.isClang "CC=clang";
|
||||
|
||||
preInstall = "mkdir -p $out/{bin,lib,man/man1,man/man3,include/gsm}";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user