3
0
Fork 0
forked from mirrors/nixpkgs

Fixing the gnumake log.patch so it applies to the new gnumake

svn path=/nixpkgs/branches/stdenv-updates/; revision=23308
This commit is contained in:
Lluís Batlle i Rossell 2010-08-21 15:54:48 +00:00
parent 02bd68fa15
commit 75a9a710fd

View file

@ -93,9 +93,9 @@ diff -rc make-3.81-orig/make.h make-3.81/make.h
***************
*** 609,611 ****
--- 609,614 ----
#define ENULLLOOP(_v,_c) do{ errno = 0; \
while (((_v)=_c)==0 && errno==EINTR); }while(0)
#define ENULLLOOP(_v,_c) do { errno = 0; (_v) = _c; } \
while((_v)==0 && errno==EINTR)
+ extern int enable_nested_output;
+ extern int stdout_nesting_level;
+ extern int stderr_nesting_level;