1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r23862: Explain who requested unknown dependency. Helps a lot in chasing dependency hell when trimming down s4 platform

(This used to be commit 6c95eabac6)
This commit is contained in:
Alexander Bokovoy 2007-07-13 10:02:44 +00:00 committed by Gerald (Jerry) Carter
parent 0ea2612763
commit 803335b0db

View File

@ -168,7 +168,7 @@ sub calc_unique_deps($$$$$$$$)
my ($name, $INPUT, $deps, $udeps, $withlibs, $forward, $pubonly, $busy) = @_;
foreach my $n (@$deps) {
die("Dependency unknown: $n") unless (defined($INPUT->{$n}));
die("Dependency unknown: $n (for $name)") unless (defined($INPUT->{$n}));
die("Recursive dependency: $n, list: " . join(',', @$busy)) if (grep (/^$n$/, @$busy));
next if (grep /^$n$/, @$udeps);
my $dep = $INPUT->{$n};