You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2020/10/31 12:53:46 UTC

[Issue 127774] Updating 4.1.5 to 4.2.0 fails with error

https://bz.apache.org/ooo/show_bug.cgi?id=127774

truckman <dl...@catspoiler.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dl-openoffice@catspoiler.or
                   |                            |g

--- Comment #10 from truckman <dl...@catspoiler.org> ---
This call in solenv/bin/par2script.pl:
  print "Adding definitions without assignment to the root\n";
  par2script::module::add_to_root_module();
assigns gid_File_Lib_Gconfbe and many other gids, including many font entries. 
The lower level code where this is happening is in
solenv/bin/modules/par2script/module.pm:
                my $gid;
                foreach $gid ( keys %{$definedgids} )
                {
                        if ( ! exists( $assignedgids->{$gid} ))
                        {
                                if ( $gidstring eq "" )
                                {
                                        $gidstring = $gid;
                                }
                                else
                                {
                                        $gidstring = "$gidstring,$gid";
                                }

                                $assignedgids->{$gid} = 1;
                        }
                }

The font upgrades between AOO417 and AOO418 may be triggering a bug that
affects the packaging of other files.

-- 
You are receiving this mail because:
You are the assignee for the issue.