mirror of
https://gitlab.gnome.org/World/Authenticator.git
synced 2025-03-05 17:20:57 +01:00
Meson: fix exported data files names
The issue was due to the new beta profile.
This commit is contained in:
parent
9def8141df
commit
138ffb0b33
1 changed files with 4 additions and 1 deletions
|
@ -10,18 +10,21 @@ i18n = import('i18n')
|
|||
|
||||
gettext_package = 'Authenticator'
|
||||
profile = get_option('profile')
|
||||
profile_suffix = ''
|
||||
name_suffix = ''
|
||||
if profile != 'default'
|
||||
gettext_package += profile
|
||||
if profile == 'beta'
|
||||
name_suffix = ' (Beta)'
|
||||
profile_suffix = 'Beta'
|
||||
else
|
||||
name_suffix = ' (Development)'
|
||||
profile_suffix = 'Devel'
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
application_id = 'com.github.bilelmoussaoui.Authenticator@0@'.format(profile)
|
||||
application_id = 'com.github.bilelmoussaoui.Authenticator@0@'.format(profile_suffix)
|
||||
|
||||
message('Looking for dependencies')
|
||||
dependency('glib-2.0')
|
||||
|
|
Loading…
Add table
Reference in a new issue