Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/bash/files: bash-4.2-chkexport.patch
Date: Tue, 01 Mar 2011 18:53:17
Message-Id: 20110301185305.BD82920057@flycatcher.gentoo.org
1 vapier 11/03/01 18:53:05
2
3 Added: bash-4.2-chkexport.patch
4 Log:
5 Add fix from upstream for brown bag bug in patch005.
6
7 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-shells/bash/files/bash-4.2-chkexport.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/files/bash-4.2-chkexport.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/files/bash-4.2-chkexport.patch?rev=1.1&content-type=text/plain
14
15 Index: bash-4.2-chkexport.patch
16 ===================================================================
17 *** ../bash-4.2-patched/variables.c 2011-02-25 12:07:41.000000000 -0500
18 --- variables.c 2011-03-01 10:13:04.000000000 -0500
19 ***************
20 *** 3661,3665 ****
21
22 v = find_variable (name);
23 ! if (exported_p (v))
24 {
25 array_needs_making = 1;
26 --- 3661,3665 ----
27
28 v = find_variable (name);
29 ! if (v && exported_p (v))
30 {
31 array_needs_making = 1;