aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorMichal Marek <mmarek@suse.cz>2015-12-10 15:53:06 +0100
committerMichal Marek <mmarek@suse.cz>2015-12-10 15:53:06 +0100
commita85a41ed69f27c4c667d8c418df14b4fb220c4ad (patch)
tree5ee6b3034d31d6f9495d19422745cea73f97d64b /Makefile
parentgenksyms: Handle string literals with spaces in reference files (diff)
downloadwireguard-linux-a85a41ed69f27c4c667d8c418df14b4fb220c4ad.tar.xz
wireguard-linux-a85a41ed69f27c4c667d8c418df14b4fb220c4ad.zip
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: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3a0234f50f36..b6b968e7f9dc 100644
--- a/Makefile
+++ b/Makefile
@@ -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)
# ===========================================================================