mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-06 02:29:47 +00:00
trivial: Never add duplicate symbols to the map file
This commit is contained in:
parent
aed7826c8f
commit
6a710c3c23
@ -38,7 +38,8 @@ class LdVersionScript:
|
||||
if version not in self.releases:
|
||||
self.releases[version] = []
|
||||
release = self.releases[version]
|
||||
release.append(identifier)
|
||||
if identifier not in release:
|
||||
release.append(identifier)
|
||||
return version
|
||||
|
||||
def _add_cls(self, cls):
|
||||
|
@ -159,7 +159,6 @@ LIBFWUPDPLUGIN_1.0.0 {
|
||||
|
||||
LIBFWUPDPLUGIN_1.0.1 {
|
||||
global:
|
||||
fu_chunk_array_to_string;
|
||||
fu_chunk_array_to_string;
|
||||
fu_plugin_get_quirks;
|
||||
fu_plugin_lookup_quirk_by_id;
|
||||
|
Loading…
Reference in New Issue
Block a user