From d19db30f3d515d6b3042e76301718569feae1634 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Wed, 27 Sep 2023 00:19:35 -0500 Subject: [PATCH] Fix meson install test. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d09f5734..fabe8cf0 100644 --- a/meson.build +++ b/meson.build @@ -294,6 +294,6 @@ patched_janet = custom_target('patched-janeth', # Create a version of the janet.h header that matches what jpm often expects if meson.version().version_compare('>=0.61') install_symlink('janet.h', pointing_to: 'janet/janet.h', install_dir: get_option('includedir')) - install_symlink('janet.h', pointing_to: 'janet' + meson.project_version() + '.h', install_dir: join_paths(get_option('includedir'), 'janet')) + install_symlink('janet.h', pointing_to: 'janet_' + meson.project_version() + '.h', install_dir: join_paths(get_option('includedir'), 'janet')) endif