- Use the WIN32 option to select the correct mkdir.

svn path=/trunk/; revision=14993
This commit is contained in:
Hartmut Birr 2005-05-05 11:28:49 +00:00
parent 76a83ce1cc
commit 3fdefd1abf

View file

@ -58,7 +58,7 @@ int mkdir_p(char* path)
{
return(0);
}
#ifdef UNIX_PATHS
#ifndef WIN32
if (mkdir(path, 0755) != 0)
{
perror("Failed to create directory");