diff options
Diffstat (limited to '3rdparty/SDL2/build-scripts/update-copyright.sh')
-rw-r--r-- | 3rdparty/SDL2/build-scripts/update-copyright.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/3rdparty/SDL2/build-scripts/update-copyright.sh b/3rdparty/SDL2/build-scripts/update-copyright.sh deleted file mode 100644 index 34864bc91cd..00000000000 --- a/3rdparty/SDL2/build-scripts/update-copyright.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -find . -type f -exec grep -Il "Copyright" {} \; \ -| grep -v \.hg \ -| while read i; \ -do \ - LC_ALL=C sed -ie "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$i"; \ - rm "${i}e"; \ -done |