1
1

Fixing the hardcoding of TMPDIR to the windows defualt

This commit was SVN r4124.
Этот коммит содержится в:
Prabhanjan Kambadur 2005-01-24 22:51:15 +00:00
родитель 7d37584e67
Коммит e0e47f37a4

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

@ -83,8 +83,11 @@ static void ompi_dir_empty(char *pathname);
static bool ompi_is_empty(char *pathname);
#ifdef WIN32
#define OMPI_DEFAULT_TMPDIR "C:\\TEMP"
#else
#define OMPI_DEFAULT_TMPDIR "/tmp"
#endif
static int ompi_check_dir(bool create, char *directory)