Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 251333
b: refs/heads/master
c: de7b0b4
h: refs/heads/master
i:
  251331: 9f1366e
v: v3
  • Loading branch information
Jim Cromie authored and Michal Marek committed May 24, 2011
1 parent 1c42542 commit 8a273a9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2ee2d29289951b4cb7578d75f199e4aa4084fe6f
refs/heads/master: de7b0b4110795be914e6cafdfec4276b2618cc78
10 changes: 8 additions & 2 deletions trunk/scripts/export_report.pl
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@ sub usage {
}

sub collectcfiles {
my @file
= `cat .tmp_versions/*.mod | grep '.*\.ko\$' | sed s/\.ko$/.mod.c/`;
my @file;
while (<.tmp_versions/*.mod>) {
open my $fh, '<', $_ or die "cannot open $_: $!\n";
push (@file,
grep s/\.ko/.mod.c/, # change the suffix
grep m/.+\.ko/, # find the .ko path
<$fh>); # lines in opened file
}
chomp @file;
return @file;
}
Expand Down

0 comments on commit 8a273a9

Please sign in to comment.