From dce5c3efccd00286c1fa5698c38e041fc6cb8e35 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Wed, 6 Jun 2001 07:47:56 -0400 Subject: [PATCH] FIX: forgot to close the files --- Source/cmMakefile.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index a12ac2b48..f2d1fdea0 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -464,6 +464,7 @@ void cmMakefile::GenerateTestfile() } fout << std::endl; + fout.close(); } void cmMakefile::AddSource(cmSourceFile& cmfile, const char *srclist)