diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-02-17 03:44:43 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-02-17 03:44:43 +0000 |
commit | 177b22a5414e83cf4dee866b36164c7adb17f659 (patch) | |
tree | 00f72234e26f16122341187fb1f5a8679510f697 /scripts | |
parent | 9b759f26c9b32225f342dbf9acb24597110d3055 (diff) | |
download | upstream-177b22a5414e83cf4dee866b36164c7adb17f659.tar.gz upstream-177b22a5414e83cf4dee866b36164c7adb17f659.tar.bz2 upstream-177b22a5414e83cf4dee866b36164c7adb17f659.zip |
feeds: extend 'search' to lookup in source package names too
SVN-Revision: 14537
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/feeds | 2 |
1 files changed, 1 insertions, 1 deletions
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; |