aboutsummaryrefslogtreecommitdiffhomepage
path: root/meson.build
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2023-09-27 00:19:35 -0500
committerCalvin Rose <calsrose@gmail.com>2023-09-27 00:19:35 -0500
commitd19db30f3d515d6b3042e76301718569feae1634 (patch)
tree625b3c91a70896274ef7c85cec2ec9cff8368f20 /meson.build
parentMake poll work by going back to array of listeners for gc keeping. (diff)
Fix meson install test.net-reworkings
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
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