scripts/feeds: fix install of packages with different source/binary names

The logic for choice between source and binary packages was reversed.

Fixes: 52719c2b67 "metadata: scripts/feeds: distinguish between source
and binary packages, resolve virtual dependencies"
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
This commit is contained in:
Matthias Schiffer 2018-01-14 17:07:28 +01:00
parent 0cd5e85e7a
commit 06d51dbb9e
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ sub install_target_or_package {
};
my $this_feed_src = lookup_src($feed, $name);
$this_feed_src or do {
$this_feed_src and do {
return install_src($this_feed_src, $name, $force);
};