1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-13 20:58:16 +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.
var fso = new ActiveXObject("Scripting.FileSystemObject");
var makefile = ".\\Makefile.msvc";
if (compiler == "mingw")
makefile = ".\\Makefile.mingw";
else if (compiler == "bcb")
makefile = ".\\Makefile.bcb";
fso.CopyFile(makefile, ".\\Makefile", true);
WScript.Echo("Created Makefile.");