From 7fe7eab308d6d9d037e1ef4dba72b7bc101e4075 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Boric Date: Fri, 21 Jan 2022 19:30:56 +0100 Subject: [PATCH] pwd: Add missing rpath pledge --- Userland/Utilities/pwd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Utilities/pwd.cpp b/Userland/Utilities/pwd.cpp index 358b095c45..886f0f3fe7 100644 --- a/Userland/Utilities/pwd.cpp +++ b/Userland/Utilities/pwd.cpp @@ -11,7 +11,7 @@ ErrorOr serenity_main(Main::Arguments) { - TRY(Core::System::pledge("stdio")); + TRY(Core::System::pledge("rpath stdio")); outln(TRY(Core::System::getcwd())); return 0; }