mirror of
https://github.com/git/git.git
synced 2025-02-06 10:03:06 +00:00
meson: fix perl dependencies
`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>
This commit is contained in:
parent
904339edbd
commit
45c0897204
@ -4,4 +4,5 @@ test_dependencies += custom_target(
|
||||
command: generate_perl_command,
|
||||
install: true,
|
||||
install_dir: get_option('datadir') / 'perl5/FromCPAN/Mail',
|
||||
depends: [git_version_file],
|
||||
)
|
||||
|
@ -4,6 +4,7 @@ test_dependencies += custom_target(
|
||||
command: generate_perl_command,
|
||||
install: true,
|
||||
install_dir: get_option('datadir') / 'perl5/FromCPAN',
|
||||
depends: [git_version_file],
|
||||
)
|
||||
|
||||
subdir('Mail')
|
||||
|
@ -4,4 +4,5 @@ test_dependencies += custom_target(
|
||||
command: generate_perl_command,
|
||||
install: true,
|
||||
install_dir: get_option('datadir') / 'perl5/Git/LoadCPAN/Mail',
|
||||
depends: [git_version_file],
|
||||
)
|
||||
|
@ -4,6 +4,7 @@ test_dependencies += custom_target(
|
||||
command: generate_perl_command,
|
||||
install: true,
|
||||
install_dir: get_option('datadir') / 'perl5/Git/LoadCPAN',
|
||||
depends: [git_version_file],
|
||||
)
|
||||
|
||||
subdir('Mail')
|
||||
|
@ -4,4 +4,5 @@ test_dependencies += custom_target(
|
||||
command: generate_perl_command,
|
||||
install: true,
|
||||
install_dir: get_option('datadir') / 'perl5/Git/SVN',
|
||||
depends: [git_version_file],
|
||||
)
|
||||
|
@ -14,6 +14,7 @@ foreach source : [
|
||||
command: generate_perl_command,
|
||||
install: true,
|
||||
install_dir: get_option('datadir') / 'perl5/Git/SVN',
|
||||
depends: [git_version_file],
|
||||
)
|
||||
endforeach
|
||||
|
||||
|
@ -11,6 +11,7 @@ foreach source : [
|
||||
command: generate_perl_command,
|
||||
install: true,
|
||||
install_dir: get_option('datadir') / 'perl5/Git',
|
||||
depends: [git_version_file],
|
||||
)
|
||||
endforeach
|
||||
|
||||
|
@ -4,6 +4,7 @@ test_dependencies += custom_target(
|
||||
command: generate_perl_command,
|
||||
install: true,
|
||||
install_dir: get_option('datadir') / 'perl5',
|
||||
depends: [git_version_file],
|
||||
)
|
||||
|
||||
subdir('Git')
|
||||
|
Loading…
x
Reference in New Issue
Block a user