[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cdi-devel] [PATCH] Change cdi.h to use angle brackets for cdi-osdep.h include
Hi,
This patch just changes cdi.h to use angle brackets when including cdi-osdep.h
so that the compiler searches include directories (eg, -I<path>) *first*
rather than checking the local directory first.
Without this patch the wrong cdi-osdep.h gets included on Pedigree.
Signed-off-by: Matthew Iselin <matthew@xxxxxxxxxxxxxx>
---
include/cdi.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/cdi.h b/include/cdi.h
index d1a0b11..34438b0 100644
--- a/include/cdi.h
+++ b/include/cdi.h
@@ -102,7 +102,7 @@
#include <stdint.h>
-#include "cdi-osdep.h"
+#include <cdi-osdep.h>
#include "cdi/lists.h"
typedef enum {
--
1.6.4.msysgit.0