Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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.

+3 -3
+1 -1
Kbuild
··· 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)
+2 -2
arch/mips/Makefile
··· 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: