1
1

If someone provides the launch_agent cmd, then don't prefix it

cmr:v1.7

This commit was SVN r27473.
Этот коммит содержится в:
Ralph Castain 2012-10-24 16:14:04 +00:00
родитель 36b74eaf63
Коммит 7574d6673b

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

@ -439,7 +439,13 @@ static int setup_launch(int *argcptr, char ***argvptr,
char* full_orted_cmd = NULL; char* full_orted_cmd = NULL;
if (NULL != orted_cmd) { if (NULL != orted_cmd) {
if (0 == strcmp(orted_cmd, "orted")) {
/* if the cmd is our standard one, then add the prefix */
asprintf(&full_orted_cmd, "%s/%s/%s", prefix_dir, bin_base, orted_cmd); asprintf(&full_orted_cmd, "%s/%s/%s", prefix_dir, bin_base, orted_cmd);
} else {
/* someone specified something different, so don't prefix it */
full_orted_cmd = strdup(orted_cmd);
}
} }
if (ORTE_PLM_RSH_SHELL_SH == remote_shell || if (ORTE_PLM_RSH_SHELL_SH == remote_shell ||