mirror of
https://github.com/systemd/systemd.git
synced 2026-08-04 23:20:32 +00:00
meson: make version a dependency and use it in libbasic
This should hopefully ensure it gets generated before basic build happens. Fixes #11483.
This commit is contained in:
committed by
Zbigniew Jędrzejewski-Szmek
parent
04ba6ed167
commit
d1084aa2f8
@@ -1,10 +1,5 @@
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
|
||||
version_h = vcs_tag(
|
||||
command: vcs_tagger,
|
||||
input : 'version.h.in',
|
||||
output : 'version.h')
|
||||
|
||||
basic_sources = files('''
|
||||
MurmurHash2.c
|
||||
MurmurHash2.h
|
||||
@@ -216,8 +211,6 @@ basic_sources = files('''
|
||||
xattr-util.h
|
||||
'''.split())
|
||||
|
||||
basic_sources += version_h
|
||||
|
||||
missing_audit_h = files('missing_audit.h')
|
||||
missing_capability_h = files('missing_capability.h')
|
||||
missing_network_h = files('missing_network.h')
|
||||
@@ -299,7 +292,8 @@ libbasic = static_library(
|
||||
'basic',
|
||||
basic_sources,
|
||||
include_directories : includes,
|
||||
dependencies : [threads,
|
||||
dependencies : [versiondep,
|
||||
threads,
|
||||
libcap,
|
||||
libselinux,
|
||||
libm],
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
#define GIT_VERSION "@VCS_TAG@"
|
||||
Reference in New Issue
Block a user