Lines 30-41
my $makefile = read_file("$curdir/Makefile.PL");
Link Here
|
30 |
my @missing; |
30 |
my @missing; |
31 |
for my $d ( sort @dirs ) { |
31 |
for my $d ( sort @dirs ) { |
32 |
chomp $d; |
32 |
chomp $d; |
33 |
next if $d eq './Koha'; |
33 |
next if $d =~ /\.\/(debian|\.git)$/; |
34 |
next if $d eq './C4'; |
34 |
next if $makefile =~ m{'$d('|\/)}xms; |
35 |
next if $d eq './koha-tmpl'; |
|
|
36 |
next if $d eq './etc'; |
37 |
next if $d eq './debian'; |
38 |
next if $makefile =~ m|'$d'|gxms; |
39 |
push @missing, $d; |
35 |
push @missing, $d; |
40 |
} |
36 |
} |
41 |
|
37 |
|
42 |
- |
|
|