When we have more than one source version, list all the sources rather than just the first version
This commit is contained in:
parent
279c304f89
commit
078be0016d
|
@ -123,14 +123,12 @@ sub grab_src_info {
|
||||||
}
|
}
|
||||||
while (defined($match = <PFILE>)) {
|
while (defined($match = <PFILE>)) {
|
||||||
if (($match =~ /^Package: \Q$pkgname\E$/m)) {
|
if (($match =~ /^Package: \Q$pkgname\E$/m)) {
|
||||||
$result = $match;
|
$result = "$result" . $match;
|
||||||
|
}
|
||||||
|
}
|
||||||
close PFILE;
|
close PFILE;
|
||||||
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
|
||||||
}
|
|
||||||
close PFILE;
|
|
||||||
}
|
|
||||||
return "";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
my $bin_deb = "";
|
my $bin_deb = "";
|
||||||
|
|
Loading…
Reference in New Issue