tools: don't mangle the path for tools, just exec directly
authorPeter Hutterer <peter.hutterer@who-t.net>
Wed, 22 Jul 2020 01:52:13 +0000 (11:52 +1000)
committerRan Benita <ran@unusedvar.com>
Sat, 25 Jul 2020 08:05:14 +0000 (11:05 +0300)
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
tools/tools-common.c

index f7539fe..a78bc9a 100644 (file)
@@ -206,27 +206,11 @@ tools_enable_stdin_echo(void)
 
 #endif
 
-static inline bool
-tools_setup_path(void)
-{
-    const char *path = getenv("PATH");
-    const char *extra_path = LIBXKBCOMMON_TOOL_PATH;
-    char new_path[PATH_MAX];
-
-    if (snprintf_safe(new_path, sizeof(new_path), "%s:%s",
-                      extra_path, path ? path : "")) {
-        setenv("PATH", new_path, 1);
-        return true;
-    } else {
-        return false;
-    }
-}
-
 int
 tools_exec_command(const char *prefix, int real_argc, char **real_argv)
 {
     char *argv[64] = {NULL};
-    char executable[128];
+    char executable[PATH_MAX];
     const char *command;
 
     if (((size_t)real_argc >= ARRAY_SIZE(argv))) {
@@ -235,23 +219,24 @@ tools_exec_command(const char *prefix, int real_argc, char **real_argv)
     }
 
     command = real_argv[0];
+#ifdef _MSC_VER
+#define PATH_SEP '\\'
+#else
+#define PATH_SEP '/'
+#endif
 
     if (!snprintf_safe(executable, sizeof(executable),
-                       "%s-%s", prefix, command)) {
+                       "%s%c%s-%s", LIBXKBCOMMON_TOOL_PATH, PATH_SEP,
+                       prefix, command)) {
         fprintf(stderr, "Failed to assemble command\n");
         return EXIT_FAILURE;
     }
 
-    if (!tools_setup_path()) {
-        fprintf(stderr, "Failed to set PATH\n");
-        return EXIT_FAILURE;
-    }
-
     argv[0] = executable;
     for (int i = 1; i < real_argc; i++)
         argv[i] = real_argv[i];
 
-    execvp(executable, argv);
+    execv(executable, argv);
     if (errno == ENOENT) {
         fprintf(stderr, "Command '%s' is not available\n", command);
         return EXIT_INVALID_USAGE;