aboutsummaryrefslogtreecommitdiffstats
path: root/perl/Git
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsayjones.plus.com>2025-05-19 17:25:20 +0100
committerJunio C Hamano <gitster@pobox.com>2025-05-19 11:34:00 -0700
commitbdb38432f383ad397447bcfd80d1659f3c978644 (patch)
tree3058ee2f04f92623419d4949f066cf9ab4817a19 /perl/Git
parentmeson.build: quote the GITWEBDIR build configuration (diff)
downloadgit-bdb38432f383ad397447bcfd80d1659f3c978644.tar.gz
git-bdb38432f383ad397447bcfd80d1659f3c978644.zip
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 <ramsay@ramsayjones.plus.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'perl/Git')
-rw-r--r--perl/Git/SVN/Memoize/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Git/SVN/Memoize/meson.build b/perl/Git/SVN/Memoize/meson.build
index 233ec670d7..8c2e80d2d2 100644
--- a/perl/Git/SVN/Memoize/meson.build
+++ b/perl/Git/SVN/Memoize/meson.build
@@ -3,6 +3,6 @@ test_dependencies += custom_target(
output: 'YAML.pm',
command: generate_perl_command,
install: true,
- install_dir: get_option('datadir') / 'perl5/Git/SVN',
+ install_dir: get_option('datadir') / 'perl5/Git/SVN/Memoize',
depends: [git_version_file],
)