diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-15 01:31:27 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-15 01:31:27 (GMT) |
commit | a5e76555bf9ac5fac6876ba73f8c3a7cdcabc351 (patch) | |
tree | 57b6daf9dd561b16c7d63345993b3370808ef7d5 /Source/kwsys/SystemTools.cxx | |
parent | 0304073ea6cafadd612fe9bbcc06dcaa6131f1e4 (diff) | |
download | CMake-a5e76555bf9ac5fac6876ba73f8c3a7cdcabc351.zip CMake-a5e76555bf9ac5fac6876ba73f8c3a7cdcabc351.tar.gz CMake-a5e76555bf9ac5fac6876ba73f8c3a7cdcabc351.tar.bz2 |
BUG: fix for bug 6136 make sure includes are not directories
Diffstat (limited to 'Source/kwsys/SystemTools.cxx')
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 1248f29..977133f 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -821,7 +821,7 @@ bool SystemTools::SameFile(const char* file1, const char* file2) // return true if the file exists -bool SystemTools::FileExists(const char* filename) +bool SystemTools::FileExists(const char* filename, bool isFile) { #ifdef _MSC_VER # define access _access @@ -843,6 +843,12 @@ bool SystemTools::FileExists(const char* filename) } else { + // If isFile is set return not FileIsDirectory, + // so this will only be true if it is a file + if(isFile) + { + return !SystemTools::FileIsDirectory(filename); + } return true; } } |