From ce8955670681075a9350f6c78f3ecfeede24e260 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 16 Jan 2002 15:00:01 -0500 Subject: BUG: make sure non cmakedef lines are not skipped --- Source/cmConfigureFileCommand.cxx | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v0.12