Skip to content

Commit

Permalink
Merge pull request geany#3893 from techee/version_fix
Browse files Browse the repository at this point in the history
meson: make VERSION contain string, not a double
  • Loading branch information
eht16 committed Jun 9, 2024
2 parents b17d6b2 + 186166f commit 539287d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 539287d

Please sign in to comment.