repo.or.cz
/
kugel-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libpcm: output depth corrects for the sign 1bit. linear pcm corrects bits shift.
[kugel-rb.git]
/
tools
/
svnupcheck.pl
blob
723305bbce93f0781b7827cfad55887ef9eb8751
1
#!/usr/bin/perl
2
3
# feed this script the output from svn update and it will tell if a rebuild
4
# is needed/wanted
5
my
$change
;
6
while
(<
STDIN
>) {
7
if
(
/^([A-Z]+) *(.*)/
) {
8
my
(
$w
,
$path
) = (
$1
,
$2
);
9
if
(
$path
!~
/^(rbutil|manual)/
) {
10
$change
++;
11
}
12
}
13
}
14
15
print
"rebuild!
\n
"
if
(
$change
);