summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-02-07 12:29:01 +0100
committerraveit65 <[email protected]>2021-02-26 22:07:50 +0100
commit5b6170f917cdb1cbd3752c963a6ad4d2a58b35d8 (patch)
tree05f1432ff3b00ec2ba0bce67d84ac442b246af30 /meson.build
parentb024b7a86789012411583716bc8dae48415d5b28 (diff)
downloadmarco-5b6170f917cdb1cbd3752c963a6ad4d2a58b35d8.tar.bz2
marco-5b6170f917cdb1cbd3752c963a6ad4d2a58b35d8.tar.xz
build: autoconf/meson use the same value for PACKAGE_STRING
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 384aef53..97d0c11b 100644
--- a/meson.build
+++ b/meson.build
@@ -31,7 +31,7 @@ package_string = '@0@-@[email protected]'.format(package_name, soversion)
config_h = configuration_data()
config_h.set_quoted('PACKAGE', package_name)
config_h.set_quoted('PACKAGE_NAME', package_name)
-config_h.set_quoted('PACKAGE_STRING', package_string)
+config_h.set_quoted('PACKAGE_STRING', package_name + ' ' + package_version)
config_h.set_quoted('PACKAGE_VERSION', package_version)
config_h.set_quoted('GETTEXT_PACKAGE', package_name)
config_h.set_quoted('VERSION', package_version)