diff options
Diffstat (limited to 'package/utils/busybox/patches/120-lto-jobserver.patch')
-rw-r--r-- | package/utils/busybox/patches/120-lto-jobserver.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/package/utils/busybox/patches/120-lto-jobserver.patch b/package/utils/busybox/patches/120-lto-jobserver.patch new file mode 100644 index 0000000000..99c5b51201 --- /dev/null +++ b/package/utils/busybox/patches/120-lto-jobserver.patch @@ -0,0 +1,27 @@ +--- a/scripts/Kbuild.include ++++ b/scripts/Kbuild.include +@@ -130,7 +130,7 @@ make-cmd = $(subst \#,\\\#,$(subst $$,$$ + # + if_changed = $(if $(strip $(filter-out $(PHONY),$?) \ + $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ), \ +- @set -e; \ ++ +@set -e; \ + $(echo-cmd) $(cmd_$(1)); \ + echo 'cmd_$@ := $(make-cmd)' > $(@D)/.$(@F).cmd) + +@@ -139,7 +139,7 @@ if_changed = $(if $(strip $(filter-out $ + if_changed_dep = $(if $(strip $(filter-out $(PHONY),$?) \ + $(filter-out FORCE $(wildcard $^),$^) \ + $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ), \ +- @set -e; \ ++ +@set -e; \ + $(echo-cmd) $(cmd_$(1)); \ + scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(@D)/.$(@F).tmp; \ + rm -f $(depfile); \ +@@ -150,5 +150,5 @@ if_changed_dep = $(if $(strip $(filter-o + # and if so will execute $(rule_foo) + if_changed_rule = $(if $(strip $(filter-out $(PHONY),$?) \ + $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ),\ +- @set -e; \ ++ +@set -e; \ + $(rule_$(1))) |