From 56b0f979ebb3b1164a0e5d11fae186570c73e015 Mon Sep 17 00:00:00 2001
From: Marco Rubin <20150305+Rubo3@users.noreply.github.com>
Date: Sun, 18 Dec 2022 14:03:26 +0000
Subject: [PATCH] Use execlp instead of execl to avoid failure

---
 src/yuzu/startup_checks.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/yuzu/startup_checks.cpp b/src/yuzu/startup_checks.cpp
index 5638183629..9f702fe95e 100644
--- a/src/yuzu/startup_checks.cpp
+++ b/src/yuzu/startup_checks.cpp
@@ -186,7 +186,7 @@ pid_t SpawnChild(const char* arg0) {
         return pid;
     } else if (pid == 0) {
         // child
-        execl(arg0, arg0, nullptr);
+        execlp(arg0, arg0, nullptr);
         const int err = errno;
         fmt::print(stderr, "execl failed with error {}\n", err);
         _exit(0);