diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-01-16 20:00:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-01-16 20:00:01 (GMT) |
commit | ce8955670681075a9350f6c78f3ecfeede24e260 (patch) | |
tree | 1224b6378f1c951219a91279125f641a9a90d3e2 /Source/cmConfigureFileCommand.cxx | |
parent | eede7afb7e664ea84b921f8b3d4616c37139fe16 (diff) | |
download | CMake-ce8955670681075a9350f6c78f3ecfeede24e260.zip CMake-ce8955670681075a9350f6c78f3ecfeede24e260.tar.gz CMake-ce8955670681075a9350f6c78f3ecfeede24e260.tar.bz2 |
BUG: make sure non cmakedef lines are not skipped
Diffstat (limited to 'Source/cmConfigureFileCommand.cxx')
-rw-r--r-- | Source/cmConfigureFileCommand.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmConfigureFileCommand.cxx b/Source/cmConfigureFileCommand.cxx index 41c3de5..58d328b 100644 --- a/Source/cmConfigureFileCommand.cxx +++ b/Source/cmConfigureFileCommand.cxx @@ -161,6 +161,10 @@ void cmConfigureFileCommand::ConfigureFile() fout << "/* " << inLine << " */\n"; } } + else + { + fout << inLine << "\n"; + } } } // close the files before attempting to copy |