From b749495bf45075d625bc38fc1311b9df2a54cfb7 Mon Sep 17 00:00:00 2001 From: Etienne Dechamps Date: Sat, 24 Feb 2024 21:43:03 +0000 Subject: [PATCH] Fix path capitalization This fixes build breakage on case-sensitive filesystems (e.g. Linux) with errors like: src/Display/Display.h:4:10: fatal error: ../main/BoardDef.h: No such file or directory --- src/Display/Display.h | 2 +- src/S8/S8.h | 2 +- src/Sgp41/Sgp41.h | 2 +- src/Sht/Sht.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Display/Display.h b/src/Display/Display.h index 56a9d8e..be686b0 100644 --- a/src/Display/Display.h +++ b/src/Display/Display.h @@ -1,7 +1,7 @@ #ifndef _AIR_GRADIENT_OLED_H_ #define _AIR_GRADIENT_OLED_H_ -#include "../main/BoardDef.h" +#include "../Main/BoardDef.h" #include #include diff --git a/src/S8/S8.h b/src/S8/S8.h index 5d18952..8624945 100644 --- a/src/S8/S8.h +++ b/src/S8/S8.h @@ -1,7 +1,7 @@ #ifndef _S8_H_ #define _S8_H_ -#include "../main/BoardDef.h" +#include "../Main/BoardDef.h" #include "Arduino.h" /** diff --git a/src/Sgp41/Sgp41.h b/src/Sgp41/Sgp41.h index 5c58de1..594346e 100644 --- a/src/Sgp41/Sgp41.h +++ b/src/Sgp41/Sgp41.h @@ -1,7 +1,7 @@ #ifndef _AIR_GRADIENT_SGP4X_H_ #define _AIR_GRADIENT_SGP4X_H_ -#include "../main/BoardDef.h" +#include "../Main/BoardDef.h" #include #include diff --git a/src/Sht/Sht.h b/src/Sht/Sht.h index 6a9e9e1..a999b6f 100644 --- a/src/Sht/Sht.h +++ b/src/Sht/Sht.h @@ -1,7 +1,7 @@ #ifndef _SHT_H_ #define _SHT_H_ -#include "../main/BoardDef.h" +#include "../Main/BoardDef.h" #include #include