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:
parent
a238d43cff
commit
d1f4ec332b
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in New Issue