diff options
Diffstat (limited to 'samples')
-rw-r--r-- | samples/seccomp/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/samples/seccomp/Makefile b/samples/seccomp/Makefile index 7203e66dcd6f..1b4e4b8f5e47 100644 --- a/samples/seccomp/Makefile +++ b/samples/seccomp/Makefile | |||
@@ -18,8 +18,8 @@ HOSTCFLAGS_bpf-direct.o += -idirafter $(objtree)/include | |||
18 | bpf-direct-objs := bpf-direct.o | 18 | bpf-direct-objs := bpf-direct.o |
19 | 19 | ||
20 | # Try to match the kernel target. | 20 | # Try to match the kernel target. |
21 | ifndef CONFIG_64BIT | ||
22 | ifndef CROSS_COMPILE | 21 | ifndef CROSS_COMPILE |
22 | ifndef CONFIG_64BIT | ||
23 | 23 | ||
24 | # s390 has -m31 flag to build 31 bit binaries | 24 | # s390 has -m31 flag to build 31 bit binaries |
25 | ifndef CONFIG_S390 | 25 | ifndef CONFIG_S390 |
@@ -36,7 +36,13 @@ HOSTLOADLIBES_bpf-direct += $(MFLAG) | |||
36 | HOSTLOADLIBES_bpf-fancy += $(MFLAG) | 36 | HOSTLOADLIBES_bpf-fancy += $(MFLAG) |
37 | HOSTLOADLIBES_dropper += $(MFLAG) | 37 | HOSTLOADLIBES_dropper += $(MFLAG) |
38 | endif | 38 | endif |
39 | endif | ||
40 | |||
41 | # Tell kbuild to always build the programs | ||
42 | always := $(hostprogs-y) | 39 | always := $(hostprogs-y) |
40 | else | ||
41 | # MIPS system calls are defined based on the -mabi that is passed | ||
42 | # to the toolchain which may or may not be a valid option | ||
43 | # for the host toolchain. So disable tests if target architecture | ||
44 | # is MIPS but the host isn't. | ||
45 | ifndef CONFIG_MIPS | ||
46 | always := $(hostprogs-y) | ||
47 | endif | ||
48 | endif | ||