diff options
author | David Daney <david.daney@cavium.com> | 2011-11-08 13:20:10 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-11-09 08:37:44 -0500 |
commit | 44656fa03926e7363ab41c565619800a4b3b1322 (patch) | |
tree | 6254d9842af479a00302dfb9fb1ed9b1e6dc1e7b /Kbuild | |
parent | 1ea6b8f48918282bdca0b32a34095504ee65bab5 (diff) |
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>
Diffstat (limited to 'Kbuild')
-rw-r--r-- | Kbuild | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ always += missing-syscalls | |||
92 | targets += missing-syscalls | 92 | targets += missing-syscalls |
93 | 93 | ||
94 | quiet_cmd_syscalls = CALL $< | 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 | missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE | 97 | missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE |
98 | $(call cmd,syscalls) | 98 | $(call cmd,syscalls) |