From ebe29cbd338aba99a0e17ecbdc73a25545bd219a Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Thu, 29 Mar 2018 17:30:06 +0200 Subject: [PATCH] fuzz: wrappers.c depends on x86_emulate.h In my automated SLE_11 builds I often see failures like that: [ 74s] wrappers.c:5:25: error: x86-emulate.h: No such file or directory [ 74s] make[6]: *** [wrappers.o] Error 1 Signed-off-by: Olaf Hering Move line to where it belongs. Signed-off-by: Jan Beulich --- tools/fuzz/x86_instruction_emulator/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fuzz/x86_instruction_emulator/Makefile b/tools/fuzz/x86_instruction_emulator/Makefile index df04d09252..fbbb70bbfc 100644 --- a/tools/fuzz/x86_instruction_emulator/Makefile +++ b/tools/fuzz/x86_instruction_emulator/Makefile @@ -33,7 +33,7 @@ x86_emulate.h := x86-emulate.h x86_emulate/x86_emulate.h $(x86.h) # x86-emulate.c will be implicit for both x86-emulate.o x86-emulate-cov.o: x86_emulate/x86_emulate.c $(x86_emulate.h) -fuzz-emul.o fuzz-emulate-cov.o: $(x86_emulate.h) +fuzz-emul.o fuzz-emulate-cov.o wrappers.o: $(x86_emulate.h) x86-insn-fuzzer.a: fuzz-emul.o x86-emulate.o $(AR) rc $@ $^ -- 2.39.5