From ff9c167e64d90a27ec1c6c83b2cf465f7a0652fe Mon Sep 17 00:00:00 2001 From: Brad King Date: Sat, 26 Aug 2006 14:43:08 -0400 Subject: [PATCH] BUG: Reverting previous change until it is further tested. --- Source/cmMakefile.cxx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index e4ef96ded..1e1b15ff1 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2617,11 +2617,7 @@ int cmMakefile::ConfigureFile(const char* infile, const char* outfile, { std::string tempOutputFile = soutfile; tempOutputFile += ".tmp"; - std::ofstream fout(tempOutputFile.c_str() -#if defined(_WIN32) || defined(__CYGWIN__) - , std::ios::out | std::ios::binary -#endif - ); + std::ofstream fout(tempOutputFile.c_str()); if(!fout) { cmSystemTools::Error( @@ -2630,11 +2626,7 @@ int cmMakefile::ConfigureFile(const char* infile, const char* outfile, cmSystemTools::ReportLastSystemError(""); return 0; } - std::ifstream fin(sinfile.c_str() -#if defined(_WIN32) || defined(__CYGWIN__) - , std::ios::in | std::ios::binary -#endif - ); + std::ifstream fin(sinfile.c_str()); if(!fin) { cmSystemTools::Error("Could not open file for read in copy operation ",