diff options
author | Brad King <brad.king@kitware.com> | 2013-06-28 13:03:55 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-06-28 13:03:55 (GMT) |
commit | 2ed149caefb6b9c60f8e93058d5431727c650116 (patch) | |
tree | d5b098ca01e0c7c5d709bf3b3a1e67f1c8ae9ccf | |
parent | cff1bf48e79f8d85ead57d8ba5393b8157bb5721 (diff) | |
parent | 063617cd18fc162fb82fe451c77bf76fbdd85476 (diff) | |
download | CMake-2ed149caefb6b9c60f8e93058d5431727c650116.zip CMake-2ed149caefb6b9c60f8e93058d5431727c650116.tar.gz CMake-2ed149caefb6b9c60f8e93058d5431727c650116.tar.bz2 |
Merge topic 'update-kwsys'
063617c Merge branch 'upstream-kwsys' into update-kwsys
045fc84 KWSys 2013-06-24 (3d1d4e7c)
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 7891708..4d5af5e 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -605,7 +605,7 @@ bool SystemTools::MakeDirectory(const char* path) } if(SystemTools::FileExists(path)) { - return true; + return SystemTools::FileIsDirectory(path); } kwsys_stl::string dir = path; if(dir.size() == 0) |