diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-03-01 18:53:05 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-03-01 18:53:05 +0000 |
commit | e78114ed1f2f88cb9a67432d0e61dbee972df931 (patch) | |
tree | 0c051571a99fb1e6eb0ab44a30a3ab4352c92927 /app-shells/bash/files | |
parent | Add slot to gtk+ dependency. (diff) | |
download | gentoo-2-e78114ed1f2f88cb9a67432d0e61dbee972df931.tar.gz gentoo-2-e78114ed1f2f88cb9a67432d0e61dbee972df931.tar.bz2 gentoo-2-e78114ed1f2f88cb9a67432d0e61dbee972df931.zip |
Add fix from upstream for brown bag bug in patch005.
(Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
Diffstat (limited to 'app-shells/bash/files')
-rw-r--r-- | app-shells/bash/files/bash-4.2-chkexport.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app-shells/bash/files/bash-4.2-chkexport.patch b/app-shells/bash/files/bash-4.2-chkexport.patch new file mode 100644 index 000000000000..e6e4c31832aa --- /dev/null +++ b/app-shells/bash/files/bash-4.2-chkexport.patch @@ -0,0 +1,15 @@ +*** ../bash-4.2-patched/variables.c 2011-02-25 12:07:41.000000000 -0500 +--- variables.c 2011-03-01 10:13:04.000000000 -0500 +*************** +*** 3661,3665 **** + + v = find_variable (name); +! if (exported_p (v)) + { + array_needs_making = 1; +--- 3661,3665 ---- + + v = find_variable (name); +! if (v && exported_p (v)) + { + array_needs_making = 1; |