1
1

Export any environment variable that starts with OMPI_* not just

those that start with OMPI_MCA_*

This commit was SVN r5190.
Этот коммит содержится в:
Josh Hursey 2005-04-06 01:58:30 +00:00
родитель 2bd8347a7e
Коммит cedb1d46c4

Просмотреть файл

@ -680,7 +680,8 @@ static int create_app(int argc, char* argv[], orte_app_context_t **app_ptr,
app->env = NULL;
app->num_env = 0;
for (i = 0; NULL != environ[i]; ++i) {
if (0 == strncmp("OMPI_MCA_", environ[i], 9)) {
//if (0 == strncmp("OMPI_MCA_", environ[i], 9)) {
if (0 == strncmp("OMPI_", environ[i], 5)) {
ompi_argv_append(&app->num_env, &app->env, environ[i]);
}
}