On Mon, Nov 8, 2010 at 11:33 AM, Daniel P. Berrange <d...@berrange.com> wrote: > diff --git a/Makefile b/Makefile > index 02698e9..384bf72 100644 > --- a/Makefile > +++ b/Makefile > @@ -1,6 +1,10 @@ > # Makefile for QEMU. > > GENERATED_HEADERS = config-host.h trace.h qemu-options.def > +GENERATED_HEADERS = config-host.h trace.h > +ifeq ($(TRACE_BACKEND),dtrace) > +GENERATED_HEADERS += trace-dtrace.h > +endif
What happened to qemu-options.def? GENERATED_HEADERS is defined twice, the first line should probably be deleted. Looks good otherwise. Stefan