1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-08-25 13:49:22 +03:00

small addition to bcb patch

This commit is contained in:
Igor Zlatkovic
2003-06-16 07:12:50 +00:00
parent 72f92a882c
commit e8b5b0f148

View File

@ -457,12 +457,13 @@ if (withPython == true) {
} }
} }
// Create the makefile. // Create the makefile.
var fso = new ActiveXObject("Scripting.FileSystemObject"); var fso = new ActiveXObject("Scripting.FileSystemObject");
var makefile = ".\\Makefile.msvc"; var makefile = ".\\Makefile.msvc";
if (compiler == "mingw") if (compiler == "mingw")
makefile = ".\\Makefile.mingw"; makefile = ".\\Makefile.mingw";
else if (compiler == "bcb")
makefile = ".\\Makefile.bcb";
fso.CopyFile(makefile, ".\\Makefile", true); fso.CopyFile(makefile, ".\\Makefile", true);
WScript.Echo("Created Makefile."); WScript.Echo("Created Makefile.");