mirror of
https://github.com/git/git.git
synced 2026-01-10 10:13:33 +00:00
meson: rename 'third_party_sources' to 'third_party_excludes'
The 'third_party_sources' variable was moved to the root 'meson.build' file in the previous commit. The variable is actually used to exclude third party sources, so rename it accordingly to 'third_party_excludes' to avoid confusion. While here, remove a duplicate from the list. Signed-off-by: Karthik Nayak <karthik.188@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
1597b6e86e
commit
7e873eb390
@@ -41,7 +41,7 @@ concatenated_rules = custom_target(
|
||||
)
|
||||
|
||||
coccinelle_sources = []
|
||||
foreach source : run_command(git, '-C', meson.project_source_root(), 'ls-files', '--deduplicate', '*.c', third_party_sources, check: true).stdout().split()
|
||||
foreach source : run_command(git, '-C', meson.project_source_root(), 'ls-files', '--deduplicate', '*.c', third_party_excludes, check: true).stdout().split()
|
||||
coccinelle_sources += source
|
||||
endforeach
|
||||
|
||||
|
||||
Reference in New Issue
Block a user