1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Quick-and-dirty insertion of missing include - we would fail on a platform without stat.h anyway

svn path=/nixpkgs/branches/stdenv-updates/; revision=24753
This commit is contained in:
Michael Raskin 2010-11-18 10:16:54 +00:00
parent a238d43cff
commit d1f4ec332b

View file

@ -10,6 +10,10 @@ stdenv.mkDerivation rec {
doCheck = true;
preBuild = ''
echo '#include <sys/stat.h>' >> inc/cc++/config.h
'';
meta = {
description = "GNU Common C++, a portable, highly optimized C++ class framework";