diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-07-04 14:44:21 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-07-04 19:28:12 +0200 |
commit | 6a4fcf8cefceba151e11f85e784c8962b6fc383b (patch) | |
tree | 1155d770ee272787a1ae995828c91269ce567180 /src/ukify/ukify.py | |
parent | README: update requirements for signed dm-verity (diff) | |
download | systemd-6a4fcf8cefceba151e11f85e784c8962b6fc383b.tar.xz systemd-6a4fcf8cefceba151e11f85e784c8962b6fc383b.zip |
meson: Fix various versions
Follow up for 8b3b01c4b7e0fde39b4be354990ee68f5e612c52
We switch to PROJECT_VERSION instead of PROJECT_VERSION_FULL where
we report our version and which is likely being parsed to avoid
breaking compat. If we didn't, the output would change from systemd
255 to systemd 255.1 which could break various tools.
Diffstat (limited to 'src/ukify/ukify.py')
-rwxr-xr-x | src/ukify/ukify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index 5a36ce06ee..3478ff5689 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -51,7 +51,7 @@ from typing import (Any, import pefile # type: ignore -__version__ = '{{PROJECT_VERSION_FULL}} ({{VERSION_TAG}})' +__version__ = '{{PROJECT_VERSION}} ({{VERSION_TAG}})' EFI_ARCH_MAP = { # host_arch glob : [efi_arch, 32_bit_efi_arch if mixed mode is supported] |