Codebase list telepathy-glib / debian/0.7.34-1 tools / check-misc.sh
debian/0.7.34-1

Tree @debian/0.7.34-1 (Download .tar.gz)

check-misc.sh @debian/0.7.34-1raw · history · blame

#!/bin/sh

fail=0

( . "${tools_dir}"/check-whitespace.sh ) || fail=$?

if egrep '(Free\s*Software\s*Foundation.*02139|02111-1307)' "$@"
then
  echo "^^^ The above files contain the FSF's old address in GPL headers"
  fail=1
fi

exit $fail