From e94786f4b7b3871bf16e3d56a7a926780d4fd804 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Tue, 1 Aug 2017 08:14:12 -0600 Subject: [PATCH] Revert "Check for OPAL_PREFIX and set corresponding PMIX_PREFIX if found" This reverts commit 3744967adb8dcb2fc7b802c46bc6153ecef59ce6. Signed-off-by: Ralph Castain --- orte/mca/ess/base/ess_base_std_prolog.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/orte/mca/ess/base/ess_base_std_prolog.c b/orte/mca/ess/base/ess_base_std_prolog.c index 2485161ad5..42e76a6267 100644 --- a/orte/mca/ess/base/ess_base_std_prolog.c +++ b/orte/mca/ess/base/ess_base_std_prolog.c @@ -9,7 +9,6 @@ * University of Stuttgart. All rights reserved. * Copyright (c) 2004-2005 The Regents of the University of California. * All rights reserved. - * Copyright (c) 2017 Intel, Inc. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow @@ -29,7 +28,6 @@ #include #endif -#include "opal/util/opal_environ.h" #include "orte/mca/errmgr/errmgr.h" #include "orte/util/show_help.h" #include "orte/runtime/orte_wait.h" @@ -41,7 +39,6 @@ int orte_ess_base_std_prolog(void) { int ret; char *error = NULL; - char *evar; /* Initialize the ORTE data type support */ if (ORTE_SUCCESS != (ret = orte_dt_init())) { @@ -59,10 +56,6 @@ int orte_ess_base_std_prolog(void) goto error; } } - /* check for OPAL_PREFIX */ - if (NULL != (evar = getenv("OPAL_PREFIX"))) { - opal_setenv("PMIX_PREFIX", evar, false, &environ); - } return ORTE_SUCCESS;