From ac821f372300f2c4152e0aff5bd8cf2b08b8ac48 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Thu, 25 Mar 2010 03:49:05 +0000 Subject: [PATCH] Fixed bug #50889 (Fixes to confutils.js) - Patch by thomas dot worm at thomas-worm dot de --- NEWS | 4 +++- win32/confutils.js | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 5521dff5..5634e930 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,7 @@ -Version 2.0.3 "???" XX-XXX-201X +Version 2.0.3 "the evergreen you never heard" XX-XXX-201X ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + - Fixed bug #50889 (Fixes to confutils.js) + (Kalle, thomas dot worm at thomas-worm dot de) - Fixed bug #50888 (Detection of Microsoft VS.NET 2008) (Kalle) Version 2.0.2 "and then there was none" 07-March-2010 diff --git a/win32/confutils.js b/win32/confutils.js index 43d47402..ad27b0b6 100644 --- a/win32/confutils.js +++ b/win32/confutils.js @@ -992,6 +992,7 @@ function generate_files() { function generate_makefile() { + MFE.WriteLine(""); // To avoid error if MFE will be complete MFE.Close(); // Makefile.extensions is now complete MFO.Close(); // Makefile.objects is now complete var MF = FSO.CreateTextFile("Makefile", true); @@ -1023,9 +1024,9 @@ function generate_makefile() { if (make_builds.length > 1) { MF.WriteLine("!ELSE"); MF.WriteLine("!MESSAGE Note: $(PHPGTKLIB) must be created before PHP-GTK extensions can be built"); - MF.WriteLine("!ENDIF"); } - + + MF.WriteLine("!ENDIF"); MF.WriteLine("build_dirs: $(BUILD_DIR) $(BUILD_DIRS_SUB)"); MF.WriteBlankLines(1);