summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-12-12 22:10:39 -0500
committerSolomon Peachy <pizza@shaftnet.org>2020-12-12 22:10:39 -0500
commit55d301184df22b89ea66c011f7cbd755cb79f82e (patch)
tree4148ebb3209b0462773eb8d975e53794752a937f /tools
parentf7005eb4e46854587bd513168830766af3da51a2 (diff)
downloadrockbox-55d301184df22b89ea66c011f7cbd755cb79f82e.tar.gz
rockbox-55d301184df22b89ea66c011f7cbd755cb79f82e.zip
Get rid of a _long_ obsolete tool.
Change-Id: I09474927a13c6ff51b667c80ac99af1d1a65fa07
Diffstat (limited to 'tools')
-rwxr-xr-xtools/svnupcheck.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/svnupcheck.pl b/tools/svnupcheck.pl
deleted file mode 100755
index 723305bbce..0000000000
--- a/tools/svnupcheck.pl
+++ /dev/null
@@ -1,15 +0,0 @@
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
5my $change;
6while(<STDIN>) {
7 if(/^([A-Z]+) *(.*)/) {
8 my ($w, $path) = ($1, $2);
9 if($path !~ /^(rbutil|manual)/) {
10 $change++;
11 }
12 }
13}
14
15print "rebuild!\n" if($change);