Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: debian.chrome/tests/check-aliases

Issue 646032: Rename config to match naming convention. (Closed)
Patch Set: Send mail Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « debian.chrome/tests/README ('k') | debian.master/rules » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/perl -w
2
3 my %map;
4
5 print "Checking for dupe aliases in $ENV{'FLAVOUR'}...\n";
6
7 $aliases =
8 "$ENV{'INSTALL_DIR'}/lib/modules/$ENV{'VERSION'}-$ENV{'FLAVOUR'}/modules.alias ";
9
10 open(ALIASES, "< $aliases") or die "Could not open $aliases";
11
12 while (<ALIASES>) {
13 chomp;
14 my ($junk, $alias, $module) = split;
15
16 if (defined($map{$alias})) {
17 printf("%s %20s / %-20s : %s \n", ("$map{$alias}" eq "$module")
18 ? "INT" : " ", $map{$alias}, $module, $alias);
19 } else {
20 $map{$alias} = $module;
21 }
22 }
23
24 exit(0);
OLDNEW
« no previous file with comments | « debian.chrome/tests/README ('k') | debian.master/rules » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698