add support for conditional depends to the feeds script
[openwrt.git] / scripts / feeds
index 8ec0799..76d83af 100755 (executable)
@@ -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;
                }
        }
This page took 0.026736 seconds and 4 git commands to generate.