Fix a comment.
[rsync/qnx.git] / support / git-set-file-times
blob077ac0e0c989204e116737f9918b3b17a667361c
1 #!/usr/bin/perl
2 use strict;
3 use warnings;
5 # Sets mtime and atime of files to the latest commit time in git.
7 # This is useful after the first clone of the rsync repository BEFORE you
8 # do any building. It is also safe if you have done a "make distclean".
10 my %ls;
11 my $commit_time;
12 my $prefix = @ARGV && $ARGV[0] =~ s/^--prefix=// ? shift : '';
14 $/ = "\0";
15 open FH, 'git ls-files -z|' or die $!;
16 while (<FH>) {
17 chomp;
18 $ls{$_} = $_;
20 close FH;
22 $/ = "\n";
23 open FH, "git log -r --name-only --no-color --pretty=raw -z @ARGV |" or die $!;
24 while (<FH>) {
25 chomp;
26 if (/^committer .*? (\d+) (?:[\-\+]\d+)$/) {
27 $commit_time = $1;
28 } elsif (s/\0\0commit [a-f0-9]{40}$// or s/\0$//) {
29 my @files = delete @ls{split(/\0/, $_)};
30 @files = grep { defined $_ } @files;
31 next unless @files;
32 map { s/^/$prefix/ } @files;
33 utime $commit_time, $commit_time, @files;
35 last unless %ls;
37 close FH;