summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefileGenerator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-11-28 12:15:04 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-11-28 12:15:04 (GMT)
commited50410ae7903c8ed4b772e55fb797e651790f32 (patch)
tree32c2c6aec62e181c9eff174cdb9788c725f7607e /Source/cmUnixMakefileGenerator.h
parentf901b9c3403b62b0a5f8e7e07e821b88f9d6e15b (diff)
downloadCMake-ed50410ae7903c8ed4b772e55fb797e651790f32.zip
CMake-ed50410ae7903c8ed4b772e55fb797e651790f32.tar.gz
CMake-ed50410ae7903c8ed4b772e55fb797e651790f32.tar.bz2
bug: fix same path comparison when short paths are used
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r--Source/cmUnixMakefileGenerator.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h
index 5209cf1..6018721c 100644
--- a/Source/cmUnixMakefileGenerator.h
+++ b/Source/cmUnixMakefileGenerator.h
@@ -155,6 +155,8 @@ protected:
const char* path,
const char* library,
const char* fullpath);
+ ///! return true if the two paths are the same
+ virtual bool SamePath(const char* path1, const char* path2);
virtual std::string GetOutputExtension(const char* sourceExtension);
virtual void OutputIncludeMakefile(std::ostream&, const char* file);
void SetObjectFileExtension(const char* e) { m_ObjectFileExtension = e;}