Fixed whitespace

Whitespace inconsistencies reported in https://github.com/libsdl-org/SDL/pull/5673
main
Sam Lantinga 2022-05-18 06:57:28 -07:00
parent 56665e1d9d
commit aa6ea607d9
3 changed files with 51 additions and 53 deletions

View File

@ -33,8 +33,7 @@ lib=
ndk_args=
# Allow an external caller to specify locations.
for arg in $*
do
for arg in $*; do
if [ "${arg:0:8}" == "NDK_OUT=" ]; then
obj=${arg#NDK_OUT=}
elif [ "${arg:0:13}" == "NDK_LIBS_OUT=" ]; then

View File

@ -2,7 +2,6 @@
find . -type f -exec grep -Il "Copyright" {} \; \
| grep -v \.git \
| while read file; \
do \
| while read file; do \
LC_ALL=C sed -b -i "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$file"; \
done