diff options
author | Brad King <brad.king@kitware.com> | 2006-04-11 14:04:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-04-11 14:04:55 (GMT) |
commit | b613cf0be806cc1d37d2b590f1a5ba7898236ae8 (patch) | |
tree | c7c11c9d32461ec55b36bab81406231485262eec /Source/cmMakefile.h | |
parent | 47d9021b667f3024087e235f38e9b5ff9a9be876 (diff) | |
download | CMake-b613cf0be806cc1d37d2b590f1a5ba7898236ae8.zip CMake-b613cf0be806cc1d37d2b590f1a5ba7898236ae8.tar.gz CMake-b613cf0be806cc1d37d2b590f1a5ba7898236ae8.tar.bz2 |
BUG: Fixed typo in new cmake-rerun code.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 1b80959..189bce6 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -534,7 +534,7 @@ public: const std::vector<std::string>& GetOutputFiles() const { return this->OutputFiles; } void AddCMakeOutputFile(const char* file) - { this->ListFiles.push_back(file);} + { this->OutputFiles.push_back(file);} /** * Expand all defined variables in the string. |