Commit 44656fa03926e7363ab41c565619800a4b3b1322

Authored by David Daney
Committed by Michal Marek
1 parent 1ea6b8f489

kbuild: Fix missing system calls check on mips.

Commit 5f7efb4 (Kbuild: append missing-syscalls to the default target
list) broke MIPS build.

Reported-tested-and-acked-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: David Daney <david.daney@cavium.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>

Showing 2 changed files with 3 additions and 3 deletions Side-by-side Diff

... ... @@ -92,7 +92,7 @@
92 92 targets += missing-syscalls
93 93  
94 94 quiet_cmd_syscalls = CALL $<
95   - cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags)
  95 + cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags)
96 96  
97 97 missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
98 98 $(call cmd,syscalls)
... ... @@ -286,11 +286,11 @@
286 286 archprepare:
287 287 ifdef CONFIG_MIPS32_N32
288 288 @echo ' Checking missing-syscalls for N32'
289   - $(Q)$(MAKE) $(build)=. missing-syscalls ccflags-y="-mabi=n32"
  289 + $(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=n32"
290 290 endif
291 291 ifdef CONFIG_MIPS32_O32
292 292 @echo ' Checking missing-syscalls for O32'
293   - $(Q)$(MAKE) $(build)=. missing-syscalls ccflags-y="-mabi=32"
  293 + $(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=32"
294 294 endif
295 295  
296 296 install: