mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
Merge pull request #14435 from NixOS/backport-14432-to-2.32-maintenance
[Backport 2.32-maintenance] meson: Also split version string at '+' for Darwin
This commit is contained in:
commit
fc6811cb51
1 changed files with 2 additions and 2 deletions
|
|
@ -42,7 +42,7 @@ if cxx.get_id() == 'clang'
|
||||||
add_project_arguments('-fpch-instantiate-templates', language : 'cpp')
|
add_project_arguments('-fpch-instantiate-templates', language : 'cpp')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Darwin ld doesn't like "X.Y.Zpre"
|
# Darwin ld doesn't like "X.Y.ZpreABCD+W"
|
||||||
nix_soversion = meson.project_version().split('pre')[0]
|
nix_soversion = meson.project_version().split('+')[0].split('pre')[0]
|
||||||
|
|
||||||
subdir('assert-fail')
|
subdir('assert-fail')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue