aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/metadata.pl
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-06-29 19:37:11 +0000
committerJohn Crispin <blogic@openwrt.org>2013-06-29 19:37:11 +0000
commit1597b80022eb415a08bf67f2564638631e6651ae (patch)
treea05d5d73c7a21dcea874511e3107790d38bba201 /scripts/metadata.pl
parentca73ec3ee39a98e75df5db2ed543814e77a8ceb9 (diff)
downloadmaster-187ad058-1597b80022eb415a08bf67f2564638631e6651ae.tar.gz
master-187ad058-1597b80022eb415a08bf67f2564638631e6651ae.tar.bz2
master-187ad058-1597b80022eb415a08bf67f2564638631e6651ae.zip
metadata.pl: fixpath exclusion of kernel packages
module and build deps did not work for kernel modules Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37091 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-xscripts/metadata.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl
index ade86c867c..17040d9e36 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -757,7 +757,7 @@ sub gen_package_mk() {
$idx = $subdir{$dep}.$dep;
}
$idx .= $suffix;
- undef $idx if $idx =~ /^(kernel)|(base-files)$/;
+ undef $idx if $idx =~ /^(kernel\/linux)|(base-files)$/;
if ($idx) {
my $depline;
next if $pkg->{src} eq $pkg_dep->{src}.$suffix;