diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2011-08-24 21:03:30 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-11-02 00:24:01 +0100 |
commit | 5f7efb4c6da9f90cb306923ced2a6494d065a595 (patch) | |
tree | 09de567dace3a1d7beb425e4db280b01145e25f4 /Kbuild | |
parent | 0359de7dd501f694f01b61364c9b633eab41f494 (diff) |
Kbuild: append missing-syscalls to the default target list
This avoid an extra make invocation on `prepare0'.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Kbuild')
-rw-r--r-- | Kbuild | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -88,11 +88,13 @@ $(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s Kbuild # 3) Check for missing system calls # +always += missing-syscalls +targets += missing-syscalls + quiet_cmd_syscalls = CALL $< cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) -PHONY += missing-syscalls -missing-syscalls: scripts/checksyscalls.sh FORCE +missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE $(call cmd,syscalls) # Keep these two files during make clean |