diff options
author | Alfred Wingate <parona@protonmail.com> | 2024-07-02 00:08:27 +0300 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-07-03 16:19:22 +0200 |
commit | 6e29dc3814da0a425424b8ed4ccb2e3769bb2de2 (patch) | |
tree | 42dec3c5fb97b5cedeb51b397aa0b0fb21b06c8f | |
parent | fb1a124cde2e75300fdcaf1cd9378cd7db1544bf (diff) | |
download | libayatana-appindicator-6e29dc3814da0a425424b8ed4ccb2e3769bb2de2.tar.gz libayatana-appindicator-6e29dc3814da0a425424b8ed4ccb2e3769bb2de2.tar.bz2 libayatana-appindicator-6e29dc3814da0a425424b8ed4ccb2e3769bb2de2.zip |
Correct symbols in version script file
LLVM lld checks for nonexistent symbols in version scripts files.
Correct symbols names to what appears to be the desired results.
Bug: https://bugs.gentoo.org/934481
Fixes: 4d97676bb5ba1a7612aed36d219cbaa978adc90e
Signed-off-by: Alfred Wingate <parona@protonmail.com>
-rw-r--r-- | src/app-indicator.symbols | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app-indicator.symbols b/src/app-indicator.symbols index 6d1cf35..1e4e6dd 100644 --- a/src/app-indicator.symbols +++ b/src/app-indicator.symbols @@ -1,6 +1,6 @@ { global: app_indicator_*; local: _notification_*; - _generate_; - _application_; + _generate_id; + _application_service_marshal_*; }; |