summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc
diff options
context:
space:
mode:
authorEric Seidel <gridaphobe@gmail.com>2015-05-11 14:37:53 -0700
committerEric Seidel <gridaphobe@gmail.com>2015-05-11 14:44:50 -0700
commit662a6b1ca62b2e44115f6e29999f30896ddfa075 (patch)
treede5c2d6b8130d3e1d9c89038c32a22eef2bf423a /pkgs/development/libraries/glibc
parent395829686d0219b3e14fe6ffae60a24b4e50370b (diff)
downloadnixlib-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar
nixlib-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.gz
nixlib-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.bz2
nixlib-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.lz
nixlib-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.xz
nixlib-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.zst
nixlib-662a6b1ca62b2e44115f6e29999f30896ddfa075.zip
remove all references to `stdenv.cc.cc.is{GNU,Clang}`
use the new `stdenv.cc.is{GNU,Clang}` instead, which will always be
defined.
Diffstat (limited to 'pkgs/development/libraries/glibc')
-rw-r--r--pkgs/development/libraries/glibc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/glibc/default.nix b/pkgs/development/libraries/glibc/default.nix
index ccf6d2c0686e..08eaf555e02d 100644
--- a/pkgs/development/libraries/glibc/default.nix
+++ b/pkgs/development/libraries/glibc/default.nix
@@ -8,7 +8,7 @@
 , withGd ? false, gd ? null, libpng ? null
 }:
 
-assert stdenv.cc.cc.isGNU or false;
+assert stdenv.cc.isGNU;
 
 let
   build = import ./common.nix;