package/swupdate: indent with tabs

Commit eb2f2886b2 ("package/swupdate:
add staging install") has introduced some commands indented with
spaces, which check-package doesn't like.

Fix that by using tabs instead, and while we're at it, wrap the line
that is a bit too long.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Thomas Petazzoni 2022-12-11 14:42:01 +01:00
parent de7850f946
commit 65e0351adc

View File

@ -230,8 +230,9 @@ define SWUPDATE_BUILD_CMDS
endef
define SWUPDATE_INSTALL_STAGING_CMDS
$(TARGET_MAKE_ENV) $(SWUPDATE_MAKE_ENV) $(MAKE) -C $(@D) \
$(SWUPDATE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) INCLUDEDIR=/usr/include/swupdate install
$(TARGET_MAKE_ENV) $(SWUPDATE_MAKE_ENV) $(MAKE) -C $(@D) \
$(SWUPDATE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) \
INCLUDEDIR=/usr/include/swupdate install
endef
define SWUPDATE_INSTALL_TARGET_CMDS