From e5a989c6f9cf921076c7140be84eaf1a7a455b40 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Fri, 27 May 2022 21:14:47 -0500 Subject: [PATCH] Remove multiple outputs with same name for old meson versions. --- meson.build | 8 -------- 1 file changed, 8 deletions(-) diff --git a/meson.build b/meson.build index 1397a742..2857b444 100644 --- a/meson.build +++ b/meson.build @@ -267,13 +267,5 @@ 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')) -else - patched_janet2 = custom_target('patched-janeth2', - input : ['tools/patch-header.janet', 'src/include/janet.h', jconf], - install : true, - install_dir : get_option('includedir'), - build_by_default : true, - output : ['janet.h'], - command : [janet_nativeclient, '@INPUT@', '@OUTPUT@']) endif