summaryrefslogtreecommitdiff
path: root/src/variable.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/variable.c')
-rw-r--r--src/variable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/variable.c b/src/variable.c
index ec87ce9b..f9243afb 100644
--- a/src/variable.c
+++ b/src/variable.c
@@ -215,7 +215,7 @@ define_variable_in_set (const char *name, size_t length,
var_slot = (struct variable **) hash_find_slot (&set->table, &var_key);
v = *var_slot;
-#ifdef VMS
+#if MK_OS_VMS
/* VMS does not populate envp[] with DCL symbols and logical names which
historically are mapped to environment variables.
If the variable is not yet defined, then we need to check if getenv()
@@ -479,7 +479,7 @@ lookup_variable (const char *name, size_t length)
is_parent |= setlist->next_is_parent;
}
-#ifdef VMS
+#if MK_OS_VMS
/* VMS doesn't populate envp[] with DCL symbols and logical names, which
historically are mapped to environment variables and returned by
getenv(). */
@@ -534,7 +534,7 @@ lookup_variable (const char *name, size_t length)
return define_variable (vname, length, value, o_env, 1);
}
}
-#endif /* VMS */
+#endif /* MK_OS_VMS */
return 0;
}