summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2004-01-22 15:54:15 (GMT)
committerBrad King <brad.king@kitware.com>2004-01-22 15:54:15 (GMT)
commitfad0651d8487943256adba84976950b4ce0d3107 (patch)
tree3cb602d997ebbc22c6010966ad6b81473657759e /Source/cmLocalUnixMakefileGenerator.h
parenta4aab3b677b01a8049cdd41bc168deed69f437fa (diff)
downloadCMake-fad0651d8487943256adba84976950b4ce0d3107.zip
CMake-fad0651d8487943256adba84976950b4ce0d3107.tar.gz
CMake-fad0651d8487943256adba84976950b4ce0d3107.tar.bz2
BUG: Fix jump-over-and-build for missing libraries when the relative path to the library is different between the source and destination of the jump.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.h b/Source/cmLocalUnixMakefileGenerator.h
index 3caf5fd..3ef82e8 100644
--- a/Source/cmLocalUnixMakefileGenerator.h
+++ b/Source/cmLocalUnixMakefileGenerator.h
@@ -192,13 +192,11 @@ protected:
virtual void OutputBuildTargetInDirWindows(std::ostream& fout,
const char* path,
const char* library,
- const char* fullpath,
- const char* outputPath);
+ const char* fullpath);
virtual void OutputBuildTargetInDir(std::ostream& fout,
const char* path,
const char* library,
- const char* fullpath,
- const char* outputPath);
+ 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);