From: Nicolas Thill Date: Tue, 17 Feb 2009 03:44:43 +0000 (+0000) Subject: feeds: extend 'search' to lookup in source package names too X-Git-Tag: reboot~24467 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=177b22a5414e83cf4dee866b36164c7adb17f659;p=openwrt%2Fopenwrt.git feeds: extend 'search' to lookup in source package names too SVN-Revision: 14537 --- diff --git a/scripts/feeds b/scripts/feeds index dd0a6c2fcd..4b53fd1174 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -173,7 +173,7 @@ sub search_feed { foreach my $substr (@substr) { my $match; - foreach my $key (qw(name title description)) { + foreach my $key (qw(name title description src)) { $pkg->{$key} and $substr and $pkg->{$key} =~ m/$substr/i and $match = 1; } $match or undef $pkgmatch;