
`generate_perl_command` needs `depends: [git_version_file]` and the uses in top-level meson.build were fine, but the ones in perl/ weren't, causing parallel build failures in some cases as GIT-BUILD-OPTIONS wasn't yet available. Signed-off-by: Sam James <sam@gentoo.org> Acked-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
14 lines
285 B
Meson
14 lines
285 B
Meson
test_dependencies += custom_target(
|
|
input: 'Git.pm',
|
|
output: 'Git.pm',
|
|
command: generate_perl_command,
|
|
install: true,
|
|
install_dir: get_option('datadir') / 'perl5',
|
|
depends: [git_version_file],
|
|
)
|
|
|
|
subdir('Git')
|
|
if get_option('perl_cpan_fallback')
|
|
subdir('FromCPAN')
|
|
endif
|