From: Anthony PERARD Date: Wed, 24 Sep 2014 15:30:34 +0000 (+0100) Subject: libxl: Fix build dependency for libxl.h. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4325 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9b90e6809257e1e82109f06b0e1e105a33bf9253;p=xen.git libxl: Fix build dependency for libxl.h. libxl.h includes _libxl_list.h, but the Makefile does not reflect this dependency. This can lead to build error due to a missing _libxl_list.h file. Signed-off-by: Anthony PERARD Acked-by: Ian Campbell --- diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile index 9d67d0b47d..496a269e7f 100644 --- a/tools/libxl/Makefile +++ b/tools/libxl/Makefile @@ -173,7 +173,7 @@ _libxl_save_msgs_helper.h _libxl_save_msgs_callout.h: \ $(PERL) -w $< $@ >$@.new $(call move-if-changed,$@.new,$@) -libxl.h: _libxl_types.h +libxl.h: _libxl_types.h _libxl_list.h libxl_json.h: _libxl_types_json.h libxl_internal.h: _libxl_types_internal.h _libxl_types_private.h _libxl_types_internal_private.h _paths.h libxl_internal_json.h: _libxl_types_internal_json.h