chaps: fix build against glibc 2.24

Ignore errors due to using deprecated readdir_r(3).
This commit is contained in:
Joachim Fasting 2016-08-26 23:46:47 +02:00
parent cbd8d138bd
commit c4dc998b69
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08

View File

@ -31,6 +31,9 @@ stdenv.mkDerivation rec {
sha256 = "0chk6pnn365d5kcz6vfqx1d0383ksk97icc0lzg0vvb0kvyj0ff1";
};
# readdir_r(3) is deprecated in glibc >= 2.24
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
patches = [ ./fix_absolute_path.patch ./fix_environment_variables.patch ./fix_scons.patch ./insert_prefetches.patch ];
postPatch = ''