From: Ian Campbell Date: Thu, 31 Mar 2011 18:04:19 +0000 (+0100) Subject: libxl: use system include for libxl_uuid.h X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3c428f3e270f23acd263a551aa2519e6d3bdafb9;p=xen.git libxl: use system include for libxl_uuid.h We install libxl_uuid.h into the system include directory and refer to it from libxl.h, hence we should include with <> not "". Signed-off-by: Ian Campbell Acked-by: Ian Jackson Committed-by: Ian Jackson --- diff --git a/tools/libxl/libxl.h b/tools/libxl/libxl.h index 72498c7fbd..f4f90377c1 100644 --- a/tools/libxl/libxl.h +++ b/tools/libxl/libxl.h @@ -131,7 +131,7 @@ #include #include /* for pid_t */ -#include "libxl_uuid.h" +#include typedef uint8_t libxl_mac[6];