From 7c4858d85ba65b693df171ccbf31ed04e0b06b8e Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Wed, 10 Apr 2024 04:39:09 -0400 Subject: [PATCH] libticables: use relative include paths This completely removes the need to add an extra include path from a build system and additionally avoids accidentally including `/usr/include/error.h` instead. --- libticables/trunk/src/linux/ioports.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libticables/trunk/src/linux/ioports.cc b/libticables/trunk/src/linux/ioports.cc index 8fa39214a..3bd8149a4 100644 --- a/libticables/trunk/src/linux/ioports.cc +++ b/libticables/trunk/src/linux/ioports.cc @@ -46,9 +46,9 @@ #include #include -#include "gettext.h" -#include "error.h" -#include "logging.h" +#include "../gettext.h" +#include "../error.h" +#include "../logging.h" #include "ioports.h" #ifdef HAVE_LINUX_PARPORT_H