Skip to content

Commit 1c5f054

Browse files
vincenzopalazzoojeda
authored andcommitted
rust: build: Fix grep warning
Fix grep warning during the build, with GNU grep 3.8 with the following command `grep -v '^\#\|^$$' rust/bindgen_parameters` I see the following warning ``` grep: warning: stray \ before # --opaque-type xregs_state --opaque-type desc_struct --opaque-type arch_lbr_state --opaque-type local_apic --opaque-type x86_msi_data --opaque-type x86_msi_addr_lo --opaque-type kunit_try_catch --opaque-type spinlock --no-doc-comments ``` Signed-off-by: Vincenzo Palazzo <[email protected]> Tested-by: Martin Rodriguez Reboredo <[email protected]> Reviewed-by: Martin Rodriguez Reboredo <[email protected]> Signed-off-by: Miguel Ojeda <[email protected]>
1 parent 5c7548d commit 1c5f054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ quiet_cmd_bindgen = BINDGEN $@
283283
$(bindgen_target_cflags) $(bindgen_target_extra)
284284

285285
$(obj)/bindings/bindings_generated.rs: private bindgen_target_flags = \
286-
$(shell grep -v '^\#\|^$$' $(srctree)/$(src)/bindgen_parameters)
286+
$(shell grep -v '^#\|^$$' $(srctree)/$(src)/bindgen_parameters)
287287
$(obj)/bindings/bindings_generated.rs: $(src)/bindings/bindings_helper.h \
288288
$(src)/bindgen_parameters FORCE
289289
$(call if_changed_dep,bindgen)

0 commit comments

Comments
 (0)