From: Felix Fietkau Date: Tue, 3 Oct 2006 12:29:22 +0000 (+0000) Subject: ignore kernel and base-files depends, both don't install anything into the staging dir X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;ds=sidebyside;h=804011d813f86ef64bf77542ae5f9729c05c7c2b;p=openwrt%2Fstaging%2Fyousong.git ignore kernel and base-files depends, both don't install anything into the staging dir SVN-Revision: 4890 --- diff --git a/openwrt/scripts/gen_deps.pl b/openwrt/scripts/gen_deps.pl index 0cdcc97a14..70c07b70a8 100755 --- a/openwrt/scripts/gen_deps.pl +++ b/openwrt/scripts/gen_deps.pl @@ -62,6 +62,7 @@ foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) { } elsif (defined($pkg{$dep}) && !$options{SDK}) { $idx = $dep; } + undef $idx if $idx =~ /^(kernel)|(base-files)$/; if ($idx) { next if $dep{$pkg{$name}->{src}."->".$idx}; $depline .= " $idx\-compile";