diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-03 12:29:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-03 12:29:22 +0000 |
commit | 804011d813f86ef64bf77542ae5f9729c05c7c2b (patch) | |
tree | 31e2ccf2c873326a62d9f3fb9dd615372760eaa7 | |
parent | 575adae7332429e72f126bd2f9c2c00a6df9ab32 (diff) | |
download | upstream-804011d813f86ef64bf77542ae5f9729c05c7c2b.tar.gz upstream-804011d813f86ef64bf77542ae5f9729c05c7c2b.tar.bz2 upstream-804011d813f86ef64bf77542ae5f9729c05c7c2b.zip |
ignore kernel and base-files depends, both don't install anything into the staging dir
SVN-Revision: 4890
-rwxr-xr-x | openwrt/scripts/gen_deps.pl | 1 |
1 files changed, 1 insertions, 0 deletions
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"; |