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

Unified Diff: third_party/freetype2/src/src/tools/update-copyright

Issue 1524973002: Update freetype sources (2.6.2) in third party. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years 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
Index: third_party/freetype2/src/src/tools/update-copyright
diff --git a/third_party/freetype2/src/src/tools/update-copyright b/third_party/freetype2/src/src/tools/update-copyright
new file mode 100755
index 0000000000000000000000000000000000000000..4a8bf9b0ea831349a38c8f731ec1a0b71398d0df
--- /dev/null
+++ b/third_party/freetype2/src/src/tools/update-copyright
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# Run the `update-copyright-year' script on all files in the git repository,
+# taking care of exceptions stored in file `no-copyright'.
+
+topdir=`git rev-parse --show-toplevel`
+toolsdir=$topdir/src/tools
+
+git ls-files --full-name $topdir \
+| sed 's|^|../../|' \
+| grep -vFf $toolsdir/no-copyright \
+| xargs $toolsdir/update-copyright-year
+
+# EOF
« no previous file with comments | « third_party/freetype2/src/src/tools/test_trig.c ('k') | third_party/freetype2/src/src/tools/update-copyright-year » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698