浏览代码

rust-bin: fix indentation

This fixes the following check-package warning:

./package/rust-bin/rust-bin.mk:27: expected indent with tabs

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Thomas Petazzoni 7 年之前
父节点
当前提交
9600ed45e2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      package/rust-bin/rust-bin.mk

+ 1 - 1
package/rust-bin/rust-bin.mk

@@ -24,7 +24,7 @@ define HOST_RUST_BIN_LIBSTD_EXTRACT
 	$(foreach f,$(HOST_RUST_BIN_EXTRA_DOWNLOADS), \
 		$(call suitable-extractor,$(f)) $(DL_DIR)/$(f) | \
 			$(TAR) -C $(@D)/std $(TAR_OPTIONS) -
-        )
+	)
 	cd $(@D)/rustc/lib/rustlib; \
 		ln -sf ../../../std/$(HOST_RUST_BIN_LIBSTD_HOST_PREFIX)/lib/rustlib/$(RUST_HOST_NAME)
 endef