1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-08 19:46:02 +01:00

Merge pull request #14005 from juhp/nix_soversion

nix-meson-build-support/common nix_soversion: fixup removal of 'pre'
This commit is contained in:
Jörg Thalheim 2025-09-17 12:19:57 +02:00 committed by GitHub
commit 7822bd5692
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,4 +42,4 @@ if cxx.get_id() == 'clang' and ('address' in get_option('b_sanitize') or 'undefi
endif
# Darwin ld doesn't like "X.Y.Zpre"
nix_soversion = meson.project_version().strip('pre')
nix_soversion = meson.project_version().replace('pre', '')