From: Olaf Hering Date: Thu, 29 Mar 2018 15:30:06 +0000 (+0200) Subject: fuzz: wrappers.c depends on x86_emulate.h X-Git-Tag: 4.11.0-rc1~97 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ebe29cbd338aba99a0e17ecbdc73a25545bd219a;p=xen.git 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 --- 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 $@ $^