[Petter Reinholdtsen]
> @@ -633,7 +625,18 @@ sub check_list {
> # Add packages to the current CD number $cd
> sub add_to_cd {
[...]
> + my $pkg;
> + for $pkg (@{$ref}) {
> + $included{$p} = $cd;
> + }
There was a small typo in this patch.
$included{$p} = $cd;
should read
$included{$pkg} = $cd;
Sorry.