File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1284,7 +1284,7 @@ prepare0: archprepare
1284
1284
# All the preparing..
1285
1285
prepare : prepare0
1286
1286
ifdef CONFIG_RUST
1287
- $(Q)$(CONFIG_SHELL) $(srctree)/scripts/rust-is-available .sh -v
1287
+ $(Q)$(CONFIG_SHELL) $(srctree)/scripts/rust_is_available .sh -v
1288
1288
$(Q)$(MAKE) $(build)=rust
1289
1289
endif
1290
1290
@@ -1800,7 +1800,7 @@ $(DOC_TARGETS):
1800
1800
# "Is Rust available?" target
1801
1801
PHONY += rustavailable
1802
1802
rustavailable :
1803
- $(Q )$(CONFIG_SHELL ) $(srctree ) /scripts/rust-is-available .sh -v && echo " Rust is available!"
1803
+ $(Q )$(CONFIG_SHELL ) $(srctree ) /scripts/rust_is_available .sh -v && echo " Rust is available!"
1804
1804
1805
1805
# Documentation target
1806
1806
#
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ config LLD_VERSION
61
61
default 0
62
62
63
63
config RUST_IS_AVAILABLE
64
- def_bool $(success,$(srctree)/scripts/rust-is-available .sh)
64
+ def_bool $(success,$(srctree)/scripts/rust_is_available .sh)
65
65
help
66
66
This shows whether a suitable Rust toolchain is available (found).
67
67
Original file line number Diff line number Diff line change 101
101
102
102
# Check that the `libclang` used by the Rust bindings generator is suitable.
103
103
bindgen_libclang_version=$( \
104
- LC_ALL=C " $BINDGEN " $( dirname $0 ) /rust-is-available-bindgen-libclang .h 2>&1 > /dev/null \
104
+ LC_ALL=C " $BINDGEN " $( dirname $0 ) /rust_is_available_bindgen_libclang .h 2>&1 > /dev/null \
105
105
| grep -F ' clang version ' \
106
106
| grep -oE ' [0-9]+\.[0-9]+\.[0-9]+' \
107
107
| head -n 1 \
File renamed without changes.
You can’t perform that action at this time.
0 commit comments