1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Doc: renamed progdoc files Doc -> progdoc to fix collision with doc/ folder on case-insensitive filesystems

This commit is contained in:
Maria Matejka
2018-04-23 11:29:13 +02:00
committed by Jan Maria Matejka
parent f851f0d7e3
commit c2fc4c10ac
19 changed files with 3 additions and 3 deletions

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

@@ -21,9 +21,9 @@ sub include {
sub process {
my $dir = shift @_;
print "$dir/Doc\n";
open(IN, "$dir/Doc") || die "Unable to read $dir/Doc";
push(@deps, "$dir/Doc");
print "$dir/progdoc\n";
open(IN, "$dir/progdoc") || die "Unable to read $dir/progdoc";
push(@deps, "$dir/progdoc");
my @docfile = <IN>;
close IN;
foreach $_ (@docfile) {