From: Andrei Pavel Date: Tue, 11 Mar 2025 10:22:50 +0000 (+0200) Subject: [#3731] Fix kea-msg-compiler not being installed X-Git-Tag: Kea-2.7.7~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef58794d73142bf713f65490b366808f3ef2c32b;p=thirdparty%2Fkea.git [#3731] Fix kea-msg-compiler not being installed And do not install fuzz files. --- diff --git a/fuzz/input/meson.build b/fuzz/input/meson.build deleted file mode 100644 index a28169c4bb..0000000000 --- a/fuzz/input/meson.build +++ /dev/null @@ -1,42 +0,0 @@ -install_data( - 'fuzz_config_kea_dhcp4/empty', - 'fuzz_config_kea_dhcp4/one-byte', - 'fuzz_config_kea_dhcp6/empty', - 'fuzz_config_kea_dhcp6/one-byte', - 'fuzz_http_endpoint_kea_dhcp4/config-get', - 'fuzz_http_endpoint_kea_dhcp4/config-get-with-service', - 'fuzz_http_endpoint_kea_dhcp4/empty', - 'fuzz_http_endpoint_kea_dhcp4/empty-json-map', - 'fuzz_http_endpoint_kea_dhcp4/one-byte', - 'fuzz_http_endpoint_kea_dhcp4/one-entry-json-map', - 'fuzz_http_endpoint_kea_dhcp6/config-get', - 'fuzz_http_endpoint_kea_dhcp6/config-get-with-service', - 'fuzz_http_endpoint_kea_dhcp6/empty', - 'fuzz_http_endpoint_kea_dhcp6/empty-json-map', - 'fuzz_http_endpoint_kea_dhcp6/one-byte', - 'fuzz_http_endpoint_kea_dhcp6/one-entry-json-map', - 'fuzz_packets_kea_dhcp4/dhcp-payload-only', - 'fuzz_packets_kea_dhcp4/empty', - 'fuzz_packets_kea_dhcp4/full-dhcp-packet', - 'fuzz_packets_kea_dhcp4/one-byte', - 'fuzz_packets_kea_dhcp4/udp-header', - 'fuzz_packets_kea_dhcp6/dhcp-payload-only', - 'fuzz_packets_kea_dhcp6/empty', - 'fuzz_packets_kea_dhcp6/full-dhcp-packet', - 'fuzz_packets_kea_dhcp6/one-byte', - 'fuzz_packets_kea_dhcp6/udp-header', - 'fuzz_unix_socket_kea_dhcp4/config-get', - 'fuzz_unix_socket_kea_dhcp4/config-get-with-service', - 'fuzz_unix_socket_kea_dhcp4/empty', - 'fuzz_unix_socket_kea_dhcp4/empty-json-map', - 'fuzz_unix_socket_kea_dhcp4/one-byte', - 'fuzz_unix_socket_kea_dhcp4/one-entry-json-map', - 'fuzz_unix_socket_kea_dhcp6/config-get', - 'fuzz_unix_socket_kea_dhcp6/config-get-with-service', - 'fuzz_unix_socket_kea_dhcp6/empty', - 'fuzz_unix_socket_kea_dhcp6/empty-json-map', - 'fuzz_unix_socket_kea_dhcp6/one-byte', - 'fuzz_unix_socket_kea_dhcp6/one-entry-json-map', - install_dir: 'share/kea/fuzz', - preserve_path: true, -) diff --git a/fuzz/meson.build b/fuzz/meson.build index 4d7c6aa116..1af2b17d99 100644 --- a/fuzz/meson.build +++ b/fuzz/meson.build @@ -2,7 +2,6 @@ if not FUZZ_OPT.enabled() subdir_done() endif -subdir('input') subdir('tests') fuzz_sources = ['fuzz.cc', 'fuzz.h'] diff --git a/src/lib/log/compiler/meson.build b/src/lib/log/compiler/meson.build index 66875a6a96..901884df08 100644 --- a/src/lib/log/compiler/meson.build +++ b/src/lib/log/compiler/meson.build @@ -6,6 +6,7 @@ KEA_MSG_COMPILER = executable( 'kea-msg-compiler', 'message.cc', include_directories: INCLUDES, + install: true, install_dir: 'bin', link_with: LIBS_BUILT_SO_FAR, )