Fix problem where bnx2x dependency tree needs special handling in sles

This commit is contained in:
Jarrod Johnson 2013-11-14 15:53:12 -05:00
parent 77cea20b24
commit cfb4a4cbaa

View File

@ -817,6 +817,9 @@ while (scalar @checkdeps) {
s/.*://;
s/^\s*//;
my @deps = split /\s+/,$_;
if ($driver =~ /libcrc32c.ko/) {
push @deps, 'crc32c.ko';
}
my $dep;
foreach $dep (@deps) {
$dep =~ s/.*\///;