diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-01-20 11:50:53 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-01-21 08:12:22 (GMT) |
commit | d70204a86aa3e454e73049efda3e1ccea8c60720 (patch) | |
tree | 45bc8dd5a0184c82be312492e20eed5c99a7d146 /Source/cmMakefile.cxx | |
parent | 0d46e9a0297d78dabc9988604a15c0096c702855 (diff) | |
download | CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.zip CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.tar.gz CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.tar.bz2 |
Only output includes once after the start of 'generate-time' when debugging.
During configure-time, GetIncludeDirectories may be called too, for example
if using the export() command. As the content can be different, it should
be output each time then.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 7e77664..4721e4c 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -99,6 +99,7 @@ cmMakefile::cmMakefile(): Internal(new Internals) this->AddDefaultDefinitions(); this->Initialize(); this->PreOrder = false; + this->GeneratingBuildSystem = false; } cmMakefile::cmMakefile(const cmMakefile& mf): Internal(new Internals) |