| Message ID | 20260720194510.3193319-1-ross.burton@arm.com |
|---|---|
| State | Under Review |
| Headers | show |
| Series | [1/2] classes/cargo: fix indentation | expand |
diff --git a/meta/classes-recipe/cargo.bbclass b/meta/classes-recipe/cargo.bbclass index 2dd28e95d33..8e05a820af4 100644 --- a/meta/classes-recipe/cargo.bbclass +++ b/meta/classes-recipe/cargo.bbclass @@ -61,7 +61,7 @@ cargo_do_install () { for tgt in "${B}/target/${CARGO_TARGET_SUBDIR}/"*; do case $tgt in *.so|*.rlib) - if [ -n "${CARGO_INSTALL_LIBRARIES}" ]; then + if [ -n "${CARGO_INSTALL_LIBRARIES}" ]; then install -d "${D}${rustlibdir}" install -m755 "$tgt" "${D}${rustlibdir}" have_installed=true
Fix mismatching indentation. Signed-off-by: Ross Burton <ross.burton@arm.com> --- meta/classes-recipe/cargo.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)