diff options
author | rbuj <[email protected]> | 2021-02-07 12:29:01 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-26 22:07:50 +0100 |
commit | 5b6170f917cdb1cbd3752c963a6ad4d2a58b35d8 (patch) | |
tree | 05f1432ff3b00ec2ba0bce67d84ac442b246af30 /meson.build | |
parent | b024b7a86789012411583716bc8dae48415d5b28 (diff) | |
download | marco-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.build | 2 |
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) |