diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-12-07 10:32:48 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-12-07 10:32:48 +0000 |
commit | e484fd510071332b3c09250b583767719d009c4c (patch) | |
tree | 0b2cf62dd07f52f6684eb7aefc912640bed58cd3 | |
parent | eeebde136dabb336e85491057fe8af8c351e9c04 (diff) | |
download | upstream-e484fd510071332b3c09250b583767719d009c4c.tar.gz upstream-e484fd510071332b3c09250b583767719d009c4c.tar.bz2 upstream-e484fd510071332b3c09250b583767719d009c4c.zip |
fix a warning
SVN-Revision: 9667
-rwxr-xr-x | scripts/feeds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds b/scripts/feeds index d62e8e79dd..f22adc55c4 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -85,7 +85,7 @@ sub search_feed { foreach my $substr (@substr) { my $match; foreach my $key (qw(name title description)) { - $substr and $pkg->{$key} =~ m/$substr/i and $match = 1; + $pkg->{$key} and $substr and $pkg->{$key} =~ m/$substr/i and $match = 1; } $match or undef $pkgmatch; }; |