summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2004-12-05 18:09:31 +0000
committerPaul Smith <psmith@gnu.org>2004-12-05 18:09:31 +0000
commit6c2179059550ac8e9db87c119bc01b8b2959d2ff (patch)
treee5a68db6fa6625753a80e28ce3dbe5f0b9f4eec8 /variable.c
parent6c9e53d64804a856580876f2019ce4ea1e42b4e0 (diff)
downloadgunmake-6c2179059550ac8e9db87c119bc01b8b2959d2ff.tar.gz
Fix bug with SHELL handling: make sure the variable struct is initialized.
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/variable.c b/variable.c
index 8398d18..495aef4 100644
--- a/variable.c
+++ b/variable.c
@@ -807,11 +807,6 @@ target_environment (struct file *file)
struct variable makelevel_key;
char **result_0;
char **result;
- struct variable ev;
-
- /* Set up a fake variable struct for the original SHELL value. */
- ev.name = "SHELL";
- ev.value = env_shell;
if (file == 0)
set_list = current_variable_set_list;
@@ -868,12 +863,15 @@ target_environment (struct file *file)
break;
case v_noexport:
- if (!streq (v->name, "SHELL"))
- continue;
/* If this is the SHELL variable and it's not exported, then
add the value from our original environment. */
- v = &ev;
- break;
+ if (streq (v->name, "SHELL"))
+ {
+ extern struct variable shell_var;
+ v = &shell_var;
+ break;
+ }
+ continue;
case v_ifset:
if (v->origin == o_default)