diff options
author | unknown <df@pippilotta.erinye.com> | 2007-10-25 13:31:31 +0200 |
---|---|---|
committer | unknown <df@pippilotta.erinye.com> | 2007-10-25 13:31:31 +0200 |
commit | 8d0cd23ed5e7c1ebadcedb049fd6cec8e4c6d537 (patch) | |
tree | ce1d803aded4ced2ac5338f11251e0b5a7f41c0f /BitKeeper | |
parent | 13eaba787efd7f37bf189134a0d12e4f6d5deb25 (diff) | |
parent | 392ade806ce14f826e546179136e2a2a5bfe3174 (diff) | |
download | mariadb-git-8d0cd23ed5e7c1ebadcedb049fd6cec8e4c6d537.tar.gz |
Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build
into pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build
Diffstat (limited to 'BitKeeper')
-rwxr-xr-x | BitKeeper/triggers/pre-commit.check-case.pl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/BitKeeper/triggers/pre-commit.check-case.pl b/BitKeeper/triggers/pre-commit.check-case.pl new file mode 100755 index 00000000000..4f68f8619e5 --- /dev/null +++ b/BitKeeper/triggers/pre-commit.check-case.pl @@ -0,0 +1,26 @@ +#!/usr/bin/perl +my $status = 0; + +my $pending = $ENV{'BK_PENDING'}; +exit 0 unless -f $pending; + +open FI, "<", $pending || exit 0; +while(<FI>) { + my ($file, $stuff) = split /\|/, $_, 2; + next unless -f $file; + $file =~ s/^(.*)\/([^\/]*)$/$2/; + my $path = $1; + opendir DIR, $path; + my @files = sort map { lc } readdir DIR; + closedir DIR; + my %count = (); + $count{$_}++ for @files; + @files = grep { $count{$_} > 1 } keys %count; + if(@files > 0) { + print "$path/$file: duplicate file names: " . (join " ", @files) . "\n"; + $status = 1; + } +} +close FI; + +exit $status; |