Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a85a41ed authored by Michal Marek's avatar Michal Marek
Browse files

kbuild: Do not run modules_install and install in paralel



Based on a x86-only patch by Andy Lutomirski <luto@amacapital.net>

With modular kernels, 'make install' is going to need the installed
modules at some point to generate the initramfs.

Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent a78f70e8
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -495,6 +495,12 @@ ifeq ($(KBUILD_EXTMOD),)
                endif
        endif
endif
# install and module_install need also be processed one by one
ifneq ($(filter install,$(MAKECMDGOALS)),)
        ifneq ($(filter modules_install,$(MAKECMDGOALS)),)
	        mixed-targets := 1
        endif
endif

ifeq ($(mixed-targets),1)
# ===========================================================================