Skip to content

Commit bdb3843

Browse files
ramsay-jonesgitster
authored andcommitted
meson: correct install location of YAML.pm
When executing an 'meson install' the YAML.pm file is incorrectly placed in the <prefix>/share/perl5/Git/SVN directory. The YAML.pm file should be placed in a 'Memoize' subdirectory instead. In order to correct the location, update the 'install_dir' of the relevant target in the 'perl/Git/SVN/Memoize/meson.build' file. Signed-off-by: Ramsay Jones <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f783b3f commit bdb3843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

perl/Git/SVN/Memoize/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ test_dependencies += custom_target(
33
output: 'YAML.pm',
44
command: generate_perl_command,
55
install: true,
6-
install_dir: get_option('datadir') / 'perl5/Git/SVN',
6+
install_dir: get_option('datadir') / 'perl5/Git/SVN/Memoize',
77
depends: [git_version_file],
88
)

0 commit comments

Comments
 (0)