From 952db3582a361aa2b6751006f064f26300b9b379 Mon Sep 17 00:00:00 2001 From: belliash Date: Fri, 18 Dec 2020 09:45:30 +0100 Subject: [PATCH] Fix make compile error. --- patches/make/4.3/001-fix-find_in_given_path.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 patches/make/4.3/001-fix-find_in_given_path.patch diff --git a/patches/make/4.3/001-fix-find_in_given_path.patch b/patches/make/4.3/001-fix-find_in_given_path.patch new file mode 100644 index 0000000..9e88976 --- /dev/null +++ b/patches/make/4.3/001-fix-find_in_given_path.patch @@ -0,0 +1,13 @@ +diff --git a/src/job.c b/src/job.c +index d6e28d3..f8f6950 100644 +--- a/src/job.c ++++ b/src/job.c +@@ -2391,7 +2391,7 @@ child_execute_job (struct childbase *child, int good_stdin, char **argv) + } + } + +- cmd = (char *)find_in_given_path (argv[0], p, 0); ++ cmd = (char *)find_in_given_path (argv[0], p, 0, false); + } + + if (!cmd)