repo.or.cz
/
empathy-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hindi update
[empathy-mirror.git]
/
tools
/
check-misc.sh
blob
89e8e871aeaa160710e5f2625bfee3aa1c29e656
1
#!/bin/sh
2
3
fail
=
0
4
5
(
.
"
${tools_dir}
"
/
check-whitespace.sh
)
|| fail
=
$?
6
7
if
egrep
'(Free\s*Software\s*Foundation.*02139|02111-1307)'
"$@"
8
then
9
echo
"^^^ The above files contain the FSF's old address in GPL headers"
10
fail
=
1
11
fi
12
13
exit
$fail