Blame telepathy-account-widgets/tools/check-misc.sh

Packit 79f644
#!/bin/sh
Packit 79f644
Packit 79f644
fail=0
Packit 79f644
Packit 79f644
( . "${tools_dir}"/check-whitespace.sh ) || fail=$?
Packit 79f644
Packit 79f644
if egrep '(Free\s*Software\s*Foundation.*02139|02111-1307)' "$@"
Packit 79f644
then
Packit 79f644
  echo "^^^ The above files contain the FSF's old address in GPL headers"
Packit 79f644
  fail=1
Packit 79f644
fi
Packit 79f644
Packit 79f644
exit $fail