Selaa lähdekoodia

LibConfig: Use full include path for endpoints

This fixes the SDL2 port build which expects this path to exist in
`/usr/include`.
Jelle Raaijmakers 2 vuotta sitten
vanhempi
commit
357538ed25
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      Userland/Libraries/LibConfig/Client.h

+ 2 - 2
Userland/Libraries/LibConfig/Client.h

@@ -6,11 +6,11 @@
 
 #pragma once
 
-#include <ConfigServer/ConfigClientEndpoint.h>
-#include <ConfigServer/ConfigServerEndpoint.h>
 #include <LibCore/Promise.h>
 #include <LibCore/StandardPaths.h>
 #include <LibIPC/ConnectionToServer.h>
+#include <Userland/Services/ConfigServer/ConfigClientEndpoint.h>
+#include <Userland/Services/ConfigServer/ConfigServerEndpoint.h>
 
 namespace Config {