Skip to content

Commit 79a0da3

Browse files
committed
SQUASHME: fix name of prte used for singleton
spawn. Need to make parameterized via config option. Signed-off-by: Howard Pritchard <howardp@lanl.gov>
1 parent cbaed52 commit 79a0da3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ompi/dpm/dpm.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,10 @@ static char *find_prte(void)
19911991
#if OMPI_USING_INTERNAL_PRRTE
19921992
/* 2) If using internal PRRTE, use our bindir. Note that this
19931993
* will obey OPAL_PREFIX and OPAL_DESTDIR */
1994-
opal_asprintf(&filename, "%s%sprte", opal_install_dirs.bindir, OPAL_PATH_SEP);
1994+
/*
1995+
* TODO: HPP replace hard-wired prrte prefix with something configurable
1996+
*/
1997+
opal_asprintf(&filename, "%s%sompi-prte", opal_install_dirs.bindir, OPAL_PATH_SEP);
19951998
return filename;
19961999
#else
19972000

0 commit comments

Comments
 (0)