3
0
Fork 0
forked from mirrors/nixpkgs

rcs: use std=gnu99 to compile with gcc5

This commit is contained in:
Robin Gloster 2016-02-09 01:23:58 +00:00
parent 70e6a117fa
commit e06726ba15

View file

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
doCheck = true;
NIX_CFLAGS_COMPILE = if stdenv.isDarwin then "-std=gnu99" else null;
NIX_CFLAGS_COMPILE = "-std=gnu99";
meta = {
homepage = http://www.gnu.org/software/rcs/;