diff options
author | Brad King <brad.king@kitware.com> | 2006-02-19 16:12:29 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-02-19 16:12:29 -0500 |
commit | e14d59119410314538ede3dd819f7d1fcf9f43f2 (patch) | |
tree | 0970c9209431dda6035aee16eb38092e7a442527 /Source/cmInstallGenerator.h | |
parent | 39f4e7f5e0aac2af3e4e02e9d563dbb88757fd8a (diff) | |
download | cmake-e14d59119410314538ede3dd819f7d1fcf9f43f2.tar.gz |
BUG: Do not report files as installed if they are optional and do not exist.
Diffstat (limited to 'Source/cmInstallGenerator.h')
-rw-r--r-- | Source/cmInstallGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstallGenerator.h b/Source/cmInstallGenerator.h index fcb496c204..e04ba52c08 100644 --- a/Source/cmInstallGenerator.h +++ b/Source/cmInstallGenerator.h @@ -35,7 +35,7 @@ public: std::vector<std::string> const& configurationTypes); static void AddInstallRule(std::ostream& os, const char* dest, int type, - const char* files, bool optional = false, + const char* file, bool optional = false, const char* properties = 0); protected: |