From 3b40a37e3467e9630987c844c7792eb6b8681131 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Fri, 3 Nov 2023 12:04:16 +0100 Subject: [PATCH] bindings: rust: fix EXTRA_DIST for examples One of the examples listed in EXTRA_DIST is missing the .rs suffix while another lists a file that doesn't exist. Fix both issues. Fixes: aaed0f2e6255 ("bindings: rust: examples: replace tools examples with use case examples") Signed-off-by: Bartosz Golaszewski --- bindings/rust/libgpiod/examples/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bindings/rust/libgpiod/examples/Makefile.am b/bindings/rust/libgpiod/examples/Makefile.am index ea1826f..48b182c 100644 --- a/bindings/rust/libgpiod/examples/Makefile.am +++ b/bindings/rust/libgpiod/examples/Makefile.am @@ -9,8 +9,7 @@ EXTRA_DIST = \ get_line_info.rs \ get_line_value.rs \ get_multiple_line_values.rs \ - gpio_threaded_info_events.rs \ - reconfigure_input_to_output \ + reconfigure_input_to_output.rs \ toggle_line_value.rs \ toggle_multiple_line_values.rs \ watch_line_info.rs \ -- 2.30.2