extensions-app: Include commit hash in nightly version
It's useful information for development snapshots, so include it when building from a git checkout. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3612 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1661>
This commit is contained in:
@ -1,7 +1,11 @@
|
||||
launcherconf = configuration_data()
|
||||
launcherconf.set('app_id', app_id)
|
||||
launcherconf.set('PACKAGE_NAME', package_name)
|
||||
launcherconf.set('PACKAGE_VERSION', meson.project_version())
|
||||
if vcs_tag != ''
|
||||
launcherconf.set('PACKAGE_VERSION', '@0@ (@1@)'.format(package_version, vcs_tag))
|
||||
else
|
||||
launcherconf.set('PACKAGE_VERSION', package_version)
|
||||
endif
|
||||
launcherconf.set('prefix', prefix)
|
||||
launcherconf.set('libdir', libdir)
|
||||
launcherconf.set('pkgdatadir', pkgdatadir)
|
||||
|
Reference in New Issue
Block a user