From: Felix Fietkau Date: Sat, 18 Oct 2008 19:36:44 +0000 (+0000) Subject: add support for conditional depends to the feeds script X-Git-Tag: reboot~25391 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=df90f52b5a93b26ce98e8e8fee058e1c6a9e0c8f;p=openwrt%2Fopenwrt.git add support for conditional depends to the feeds script SVN-Revision: 13004 --- diff --git a/scripts/feeds b/scripts/feeds index 8ec0799f70..76d83af9a3 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -290,8 +290,9 @@ sub install_package { foreach my $vpkg (@{$srcpackage{$src}}, $pkg) { foreach my $dep (@{$vpkg->{depends}}, @{$vpkg->{builddepends}}) { next if $dep =~ /@/; - next if $dep =~ /:/; $dep =~ s/^\+//; + $dep =~ s/^.+://; + next unless $dep; install_package($feed, $dep) == 0 or $ret = 1; } }