1
1

Replace the test opertion "-e" with "-r" to improve the protability.

Refs: #392

This commit was SVN r12790.
Этот коммит содержится в:
Sven Stork 2006-12-07 12:14:40 +00:00
родитель 62d7826e01
Коммит 78173a697a

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

@ -641,7 +641,7 @@ int orte_pls_rsh_launch(orte_jobid_t jobid)
if (!(remote_csh || remote_sh)) {
int i;
tmp = opal_argv_split("( test ! -e ./.profile || . ./.profile;", ' ');
tmp = opal_argv_split("( test \! -r ./.profile || . ./.profile;", ' ');
if (NULL == tmp) {
return ORTE_ERR_OUT_OF_RESOURCE;
}