wok-6.x annotate make/stuff/bug30723.patch @ rev 13934
qt4: typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jan 26 12:25:05 2013 +0100 (2013-01-26) |
parents | a882d098ba64 |
children |
rev | line source |
---|---|
gokhlayeh@7987 | 1 diff -Naur make-3.82-orig/main.c make-3.82-fix30723/main.c |
gokhlayeh@7982 | 2 --- make-3.82-orig/main.c 2010-07-19 17:10:53.000000000 +1000 |
gokhlayeh@7987 | 3 +++ make-3.82-fix30723/main.c 2010-09-23 23:34:10.932188592 +1000 |
gokhlayeh@7982 | 4 @@ -2093,7 +2093,7 @@ |
gokhlayeh@7982 | 5 const char *pv = define_makeflags (1, 1); |
gokhlayeh@7982 | 6 char *p = alloca (sizeof ("MAKEFLAGS=") + strlen (pv) + 1); |
gokhlayeh@7982 | 7 sprintf (p, "MAKEFLAGS=%s", pv); |
gokhlayeh@7982 | 8 - putenv (p); |
gokhlayeh@7982 | 9 + putenv (allocated_variable_expand (p)); |
gokhlayeh@7982 | 10 } |
gokhlayeh@7982 | 11 |
gokhlayeh@7982 | 12 if (ISDB (DB_BASIC)) |