瀏覽代碼

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 年之前
父節點
當前提交
357538ed25
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Userland/Libraries/LibConfig/Client.h

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

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