Remove some \n typos. Thanks to Glenn Morris for finding these.
This commit was SVN r8878.
Этот коммит содержится в:
родитель
232bb9534a
Коммит
f7097d34c8
2
NEWS
2
NEWS
@ -29,6 +29,8 @@ version 1.0.
|
||||
1.0.2
|
||||
-----
|
||||
|
||||
- Removed extraneous \n's when setting PATH and LD_LIBRARY_PATH in the
|
||||
rsh startup. Thanks to Glen Morris for finding these typos.
|
||||
- Fixed missing constants in MPI C++ bindings.
|
||||
- Fixed some errors caused by threading issues.
|
||||
- Fixed openib BTL flow control logic to not overrun the number of
|
||||
|
@ -748,7 +748,7 @@ int orte_pls_rsh_launch(orte_jobid_t jobid)
|
||||
/* Reset PATH */
|
||||
oldenv = getenv("PATH");
|
||||
if (NULL != oldenv) {
|
||||
asprintf(&newenv, "%s/bin:%s\n", prefix_dir, oldenv);
|
||||
asprintf(&newenv, "%s/bin:%s", prefix_dir, oldenv);
|
||||
} else {
|
||||
asprintf(&newenv, "%s/bin", prefix_dir);
|
||||
}
|
||||
@ -761,7 +761,7 @@ int orte_pls_rsh_launch(orte_jobid_t jobid)
|
||||
/* Reset LD_LIBRARY_PATH */
|
||||
oldenv = getenv("LD_LIBRARY_PATH");
|
||||
if (NULL != oldenv) {
|
||||
asprintf(&newenv, "%s/lib:%s\n", prefix_dir, oldenv);
|
||||
asprintf(&newenv, "%s/lib:%s", prefix_dir, oldenv);
|
||||
} else {
|
||||
asprintf(&newenv, "%s/lib", prefix_dir);
|
||||
}
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user