From 525e8653e8a30ea7086ecf7d2465096bbcf51f8a Mon Sep 17 00:00:00 2001 From: Niklas Poslovski Date: Sat, 15 Jun 2024 17:17:23 +0200 Subject: [PATCH 3/7] LibCore: Remove the Haiku-specific runtime_directory from StandardPaths --- Userland/Libraries/LibCore/StandardPaths.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibCore/StandardPaths.cpp b/Userland/Libraries/LibCore/StandardPaths.cpp index 77ddbeb953..8a95a5c2f1 100644 --- a/Userland/Libraries/LibCore/StandardPaths.cpp +++ b/Userland/Libraries/LibCore/StandardPaths.cpp @@ -154,8 +154,6 @@ ErrorOr StandardPaths::runtime_directory() #elif defined(AK_OS_MACOS) builder.append(home_directory()); builder.append("/Library/Application Support"sv); -#elif defined(AK_OS_HAIKU) - builder.append("/boot/system/var/shared_memory"sv); #elif defined(AK_OS_LINUX) auto uid = getuid(); builder.appendff("/run/user/{}", uid); -- 2.43.2