From 5d9403fde4e0d89313121fcd5fa4cfc6c4ddfc4e Mon Sep 17 00:00:00 2001
From: Dean Camera <dean@fourwalledcubicle.com>
Date: Sun, 1 Jul 2012 13:20:16 +0000
Subject: [PATCH] Fix up non-relative header file include paths (thanks to Kim
 Blomqvist).

---
 LUFA/Platform/Platform.h                | 6 +++---
 LUFA/Platform/UC3/ClockManagement.h     | 2 +-
 LUFA/Platform/UC3/InterruptManagement.h | 2 +-
 LUFA/Platform/XMEGA/ClockManagement.h   | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/LUFA/Platform/Platform.h b/LUFA/Platform/Platform.h
index db5f43535..252436329 100644
--- a/LUFA/Platform/Platform.h
+++ b/LUFA/Platform/Platform.h
@@ -70,10 +70,10 @@
 
 	/* Includes: */
 		#if (ARCH == ARCH_UC3)
-			#include <LUFA/Platform/UC3/ClockManagement.h>
-			#include <LUFA/Platform/UC3/InterruptManagement.h>
+			#include "UC3/ClockManagement.h"
+			#include "UC3/InterruptManagement.h"
 		#elif (ARCH == ARCH_XMEGA)
-			#include <LUFA/Platform/XMEGA/ClockManagement.h>
+			#include "XMEGA/ClockManagement.h"
 		#endif
 
 #endif
diff --git a/LUFA/Platform/UC3/ClockManagement.h b/LUFA/Platform/UC3/ClockManagement.h
index ac2431476..b6b6ece27 100644
--- a/LUFA/Platform/UC3/ClockManagement.h
+++ b/LUFA/Platform/UC3/ClockManagement.h
@@ -72,7 +72,7 @@
 #define _UC3_CLOCK_MANAGEMENT_H_
 
 	/* Includes: */
-		#include <LUFA/Common/Common.h>
+		#include "../../Common/Common.h"
 
 	/* Enable C linkage for C++ Compilers: */
 		#if defined(__cplusplus)
diff --git a/LUFA/Platform/UC3/InterruptManagement.h b/LUFA/Platform/UC3/InterruptManagement.h
index 7441a3011..2f9ec2304 100644
--- a/LUFA/Platform/UC3/InterruptManagement.h
+++ b/LUFA/Platform/UC3/InterruptManagement.h
@@ -71,7 +71,7 @@
 #define _UC3_INTERRUPT_MANAGEMENT_H_
 
 	/* Includes: */
-		#include <LUFA/Common/Common.h>
+		#include "../../Common/Common.h"
 
 	/* Enable C linkage for C++ Compilers: */
 		#if defined(__cplusplus)
diff --git a/LUFA/Platform/XMEGA/ClockManagement.h b/LUFA/Platform/XMEGA/ClockManagement.h
index c0553aeb9..c824c89fb 100644
--- a/LUFA/Platform/XMEGA/ClockManagement.h
+++ b/LUFA/Platform/XMEGA/ClockManagement.h
@@ -70,7 +70,7 @@
 #define _XMEGA_CLOCK_MANAGEMENT_H_
 
 	/* Includes: */
-		#include <LUFA/Common/Common.h>
+		#include "../../Common/Common.h"
 
 	/* Enable C linkage for C++ Compilers: */
 		#if defined(__cplusplus)
-- 
GitLab