From 92c8e2913a729d56fb370c8c1a75cf606002b3a7 Mon Sep 17 00:00:00 2001 From: Niklas Poslovski Date: Sun, 16 Jun 2024 15:41:03 +0200 Subject: [PATCH 7/9] 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 995c992e8f..acd46eebbd 100644 --- a/Userland/Libraries/LibCore/StandardPaths.cpp +++ b/Userland/Libraries/LibCore/StandardPaths.cpp @@ -156,8 +156,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