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 0a4d9fd9bc
commit e52df92352

View File

@ -829,6 +829,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/.*\///;