From 357538ed25f8ea532e35c9bac72bb18bbbe20e48 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Thu, 23 Mar 2023 22:44:44 +0100 Subject: [PATCH] LibConfig: Use full include path for endpoints This fixes the SDL2 port build which expects this path to exist in `/usr/include`. --- Userland/Libraries/LibConfig/Client.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibConfig/Client.h b/Userland/Libraries/LibConfig/Client.h index 00b3a8353a..0da1805894 100644 --- a/Userland/Libraries/LibConfig/Client.h +++ b/Userland/Libraries/LibConfig/Client.h @@ -6,11 +6,11 @@ #pragma once -#include -#include #include #include #include +#include +#include namespace Config {