Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1266)

Unified Diff: third_party/libxslt/win32/configure.js

Issue 1193533007: Upgrade to libxml 2.9.2 and libxslt 1.1.28 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no iconv Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libxslt/win32/config.msvc ('k') | third_party/libxslt/win32/libxslt.def.src » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libxslt/win32/configure.js
diff --git a/third_party/libxslt/win32/configure.js b/third_party/libxslt/win32/configure.js
index 64c07750e890a05109b323c398a64cd08e1fc993..7f2f854827b94c8f6ce5fcb60c207507fcfd0099 100644
--- a/third_party/libxslt/win32/configure.js
+++ b/third_party/libxslt/win32/configure.js
@@ -461,13 +461,7 @@ var fso = new ActiveXObject("Scripting.FileSystemObject");
var makefile = ".\\Makefile.msvc";
if (compiler == "mingw")
makefile = ".\\Makefile.mingw";
-var new_makefile = ".\\Makefile";
-var f = fso.FileExists(new_makefile);
-if (f) {
- var t = fso.GetFile(new_makefile);
- t.Attributes =0;
-}
-fso.CopyFile(makefile, new_makefile, true);
+fso.CopyFile(makefile, ".\\Makefile", true);
WScript.Echo("Created Makefile.");
// Create the config.h.
var confighsrc = "..\\libxslt\\win32config.h";
« no previous file with comments | « third_party/libxslt/win32/config.msvc ('k') | third_party/libxslt/win32/libxslt.def.src » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698