[Buildroot] [git commit branch/2020.11.x] package/uboot-tools: drop redundant parentheses
From: Peter Korsgaard <peter@korsgaard.com>
Date: 2021-01-28 20:18:26
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Peter Korsgaard <peter@korsgaard.com>
Date: 2021-01-28 20:18:26
Subsystem:
the rest · Maintainer:
Linus Torvalds
commit: https://git.buildroot.net/buildroot/commit/?id=9e2f21dff98507e4aad9bedbaf2a29001d1a5441 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2020.11.x Commit d8db91fc6fa ("package/uboot-tools: resolve host uboot env/script error") introduced closing parentheses that is not matched and not needed. Fixes: http://autobuild.buildroot.net/results/a65/a65fcc581f56ef70154f83e80f12d64f2e0f856a/ http://autobuild.buildroot.net/results/39a/39aabb9d8afcdead1d620e081d2cd43ee2d61fbc/ Cc: Matt Weber <redacted> Cc: Kalpesh Panchal <redacted> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Reviewed-by: Matt Weber <redacted> Reviewed-by: Bin Meng <redacted> Tested-by: Bin Meng <redacted> Signed-off-by: Yann E. MORIN <redacted> (cherry picked from commit c1eb7229152831a312a84318d4a858edccab9ad3) Signed-off-by: Peter Korsgaard <peter@korsgaard.com> --- package/uboot-tools/uboot-tools.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/uboot-tools/uboot-tools.mk b/package/uboot-tools/uboot-tools.mk
index 839f039f50..b240789286 100644
--- a/package/uboot-tools/uboot-tools.mk
+++ b/package/uboot-tools/uboot-tools.mk@@ -158,7 +158,7 @@ endif #BR_BUILDING define HOST_UBOOT_TOOLS_GENERATE_BOOT_SCRIPT $(@D)/tools/mkimage -C none -A $(MKIMAGE_ARCH) -T script \ -d $(call qstrip,$(BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE)) \ - $(@D)/tools/boot.scr) + $(@D)/tools/boot.scr endef define HOST_UBOOT_TOOLS_INSTALL_BOOT_SCRIPT $(INSTALL) -m 0755 -D $(@D)/tools/boot.scr $(BINARIES_DIR)/boot.scr