diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-11 20:59:40 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-11 20:59:40 -0500 |
| commit | 732783fea085e3464c4ea4940dbb540ac8675e79 (patch) | |
| tree | abdbb577f34c68646bce8f01228ff572966b51bf | |
| parent | 9f80d8b68fb244bbd69c55aced663b91098544fc (diff) | |
| parent | 44656fa03926e7363ab41c565619800a4b3b1322 (diff) | |
Merge branch 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
* 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
kbuild: Fix missing system calls check on mips.
| -rw-r--r-- | Kbuild | 2 | ||||
| -rw-r--r-- | arch/mips/Makefile | 4 |
2 files changed, 3 insertions, 3 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) |
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 9b4cb00407d7..0be318609fc6 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
| @@ -286,11 +286,11 @@ CLEAN_FILES += vmlinux.32 vmlinux.64 | |||
| 286 | archprepare: | 286 | archprepare: |
| 287 | ifdef CONFIG_MIPS32_N32 | 287 | ifdef CONFIG_MIPS32_N32 |
| 288 | @echo ' Checking missing-syscalls for N32' | 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 | endif | 290 | endif |
| 291 | ifdef CONFIG_MIPS32_O32 | 291 | ifdef CONFIG_MIPS32_O32 |
| 292 | @echo ' Checking missing-syscalls for O32' | 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 | endif | 294 | endif |
| 295 | 295 | ||
| 296 | install: | 296 | install: |
