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

Side by Side Diff: third_party/libxslt/README.chromium

Issue 1100003: Pass license check script for most of the tree. (Closed)
Patch Set: retry Created 10 years, 9 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 unified diff | Download patch
« no previous file with comments | « third_party/libxml/README.chromium ('k') | third_party/ocmock/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This directory contains a partial snapshot of the libxslt library from 1 Name: libxslt
2 http://xmlsoft.org/XSLT, with the following modification: 2 URL: http://xmlsoft.org/XSLT
3 3
4 This directory contains a partial snapshot of the libxslt library
5 with the following modification:
6
4 1) Modified win32/configure.js to be able to clobber a read-only Makefile 7 1) Modified win32/configure.js to be able to clobber a read-only Makefile
5 This consists of: 8 This consists of:
6 replace --- 9 replace ---
7 fso.CopyFile(makefile, ".\\Makefile", true); 10 fso.CopyFile(makefile, ".\\Makefile", true);
8 with --- 11 with ---
9 var new_makefile = ".\\Makefile"; 12 var new_makefile = ".\\Makefile";
10 var f = fso.FileExists(new_makefile); 13 var f = fso.FileExists(new_makefile);
11 if (f) { 14 if (f) {
12 var t = fso.GetFile(new_makefile); 15 var t = fso.GetFile(new_makefile);
13 t.Attributes =0; 16 t.Attributes =0;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 headers. 48 headers.
46 - On Linux, 'cd linux && sh ../configure --with-libxml-src=../../libxml/linux/' 49 - On Linux, 'cd linux && sh ../configure --with-libxml-src=../../libxml/linux/'
47 to re-generate configuration headers. 50 to re-generate configuration headers.
48 - On Mac, 'cd mac && sh ../configure --with-libxml-src=../../libxml/mac/' 51 - On Mac, 'cd mac && sh ../configure --with-libxml-src=../../libxml/mac/'
49 to re-generate configuration headers. 52 to re-generate configuration headers.
50 - Perform the modification above. 53 - Perform the modification above.
51 - Update this README to reflect the new version number. 54 - Update this README to reflect the new version number.
52 - When creating your CL, make sure to "svn add" any new source files, but 55 - When creating your CL, make sure to "svn add" any new source files, but
53 don't ever add in the files not needed for the Chromium build. (e.g. 56 don't ever add in the files not needed for the Chromium build. (e.g.
54 Changelog, configure, etc) -- these are just bloat. 57 Changelog, configure, etc) -- these are just bloat.
OLDNEW
« no previous file with comments | « third_party/libxml/README.chromium ('k') | third_party/ocmock/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698