From: Ilias Apalodimas Date: Tue, 20 May 2025 05:21:23 +0000 (+0300) Subject: kbuild: remove redundant 'set -e' from sub_cmd_record_mcount X-Git-Tag: v2025.10-rc1~118^2~61^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c180949ec3e924020edbff00884f206e120b028;p=thirdparty%2Fu-boot.git kbuild: remove redundant 'set -e' from sub_cmd_record_mcount Back from kernel commit 4317ee3b6a5e ("kbuild: remove redundant 'set -e' from sub_cmd_record_mcount") Signed-off-by: Ilias Apalodimas --- diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 2f2d5d4afc2..b2bf5a2c000 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -223,7 +223,7 @@ sub_cmd_record_mcount = \ recordmcount_source := $(srctree)/scripts/recordmcount.c \ $(srctree)/scripts/recordmcount.h else -sub_cmd_record_mcount = set -e ; perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \ +sub_cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \ "$(if $(CONFIG_SYS_BIG_ENDIAN),big,little)" \ "$(if $(CONFIG_64BIT),64,32)" \ "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS)" \