Add more debug when we fail to find Packages data for some reason
This commit is contained in:
parent
24373c514f
commit
0bb4c00e03
|
@ -949,10 +949,16 @@ sub add_Packages_entry {
|
||||||
|
|
||||||
if ($arch eq "source") {
|
if ($arch eq "source") {
|
||||||
m/^Directory: (\S+)/mi and $file = $1;
|
m/^Directory: (\S+)/mi and $file = $1;
|
||||||
|
if (!defined($file)) {
|
||||||
|
die "Can't parse source file information out of $_\n";
|
||||||
|
}
|
||||||
$pdir = Packages_dir($dir, $file, $section) . "/source";
|
$pdir = Packages_dir($dir, $file, $section) . "/source";
|
||||||
$pkgfile = "$pdir/Sources";
|
$pkgfile = "$pdir/Sources";
|
||||||
} else {
|
} else {
|
||||||
m/^Filename: (\S+)/mi and $file = $1;
|
m/^Filename: (\S+)/mi and $file = $1;
|
||||||
|
if (!defined($file)) {
|
||||||
|
die "Can't parse binary file information out of $_\n";
|
||||||
|
}
|
||||||
$pdir = Packages_dir($dir, $file, $section) . "/binary-$arch";
|
$pdir = Packages_dir($dir, $file, $section) . "/binary-$arch";
|
||||||
$pkgfile = "$pdir/Packages";
|
$pkgfile = "$pdir/Packages";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue