summaryrefslogtreecommitdiffstats
path: root/abs/core/make/bug30723.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-08-07 17:35:30 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-08-07 17:35:30 (GMT)
commit4fe0a91dc41e4f497a8aa5497c21799060d5fddd (patch)
tree0f5c663035712d7b6441f4c93335d9bc22cc5029 /abs/core/make/bug30723.patch
parentd09de6629ad05b3ad935ac79e7ed6c7fe46e3cf2 (diff)
downloadlinhes_pkgbuild-4fe0a91dc41e4f497a8aa5497c21799060d5fddd.zip
linhes_pkgbuild-4fe0a91dc41e4f497a8aa5497c21799060d5fddd.tar.gz
linhes_pkgbuild-4fe0a91dc41e4f497a8aa5497c21799060d5fddd.tar.bz2
make 3.82
-moved to core
Diffstat (limited to 'abs/core/make/bug30723.patch')
-rw-r--r--abs/core/make/bug30723.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/abs/core/make/bug30723.patch b/abs/core/make/bug30723.patch
new file mode 100644
index 0000000..84e7ebe
--- /dev/null
+++ b/abs/core/make/bug30723.patch
@@ -0,0 +1,12 @@
+diff -Naur make-3.82-orig/main.c make-3.82-fix30723//main.c
+--- make-3.82-orig/main.c 2010-07-19 17:10:53.000000000 +1000
++++ make-3.82-fix30723//main.c 2010-09-23 23:34:10.932188592 +1000
+@@ -2093,7 +2093,7 @@
+ const char *pv = define_makeflags (1, 1);
+ char *p = alloca (sizeof ("MAKEFLAGS=") + strlen (pv) + 1);
+ sprintf (p, "MAKEFLAGS=%s", pv);
+- putenv (p);
++ putenv (allocated_variable_expand (p));
+ }
+
+ if (ISDB (DB_BASIC))