Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Sun, 09 Jun 2024 11:39:32 UTC Commit: 539287d6f2d45ee6fa62e8f88612f7f25ea77cdd https://github.com/geany/geany/commit/539287d6f2d45ee6fa62e8f88612f7f25ea77c...
Log Message: ----------- Merge pull request #3893 from techee/version_fix
meson: make VERSION contain string, not a double
Modified Paths: -------------- meson.build
Modified: meson.build 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -118,7 +118,7 @@ cdata.set_quoted('PACKAGE_NAME','Geany') cdata.set_quoted('PACKAGE_STRING', 'Geany ' + meson.project_version()) cdata.set_quoted('PACKAGE_VERSION', meson.project_version()) cdata.set('GETTEXT_PACKAGE', 'PACKAGE') -cdata.set('VERSION', meson.project_version()) +cdata.set_quoted('VERSION', meson.project_version()) cdata.set('ENABLE_NLS', 1) if (host_machine.system() != 'windows' and get_option('vte')) cdata.set('HAVE_VTE', 1)
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).