From f01aef274dbc87d647c47eb5d3a1185aa6179f95 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Sun, 16 May 2010 13:33:52 +0000 Subject: [PATCH] [RBUILD] close tag in generated vcxproj files (VS2010 support still incomplete) See issue #5199 for more details. svn path=/trunk/; revision=47241 --- reactos/tools/rbuild/backend/msvc/vcxprojmaker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/rbuild/backend/msvc/vcxprojmaker.cpp b/reactos/tools/rbuild/backend/msvc/vcxprojmaker.cpp index cc8cedf367c..7a210206d86 100644 --- a/reactos/tools/rbuild/backend/msvc/vcxprojmaker.cpp +++ b/reactos/tools/rbuild/backend/msvc/vcxprojmaker.cpp @@ -261,7 +261,7 @@ VCXProjMaker::_generate_proj_file ( const Module& module ) fprintf ( OUT, "\t\t%s\r\n", "Win32Proj" ); //FIXME: Win32Proj??? fprintf ( OUT, "\t\t%s\r\n", module.name.c_str() ); //FIXME: shouldn't this be the soltion name? fprintf ( OUT, "\t\r\n" ); - + fprintf ( OUT, "" ); }