wok view make/stuff/bug30723.patch @ rev 6693

Added 2 patches to make. Patches came from archlinux.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Oct 13 01:41:55 2010 +0000 (2010-10-13)
parents
children
line source
1 diff -Naur make-3.82-orig/main.c make-3.82-fix30723//main.c
2 --- make-3.82-orig/main.c 2010-07-19 17:10:53.000000000 +1000
3 +++ make-3.82-fix30723//main.c 2010-09-23 23:34:10.932188592 +1000
4 @@ -2093,7 +2093,7 @@
5 const char *pv = define_makeflags (1, 1);
6 char *p = alloca (sizeof ("MAKEFLAGS=") + strlen (pv) + 1);
7 sprintf (p, "MAKEFLAGS=%s", pv);
8 - putenv (p);
9 + putenv (allocated_variable_expand (p));
10 }
12 if (ISDB (DB_BASIC))