From 758b0f711c496a1121061724573bb0eb816cd57b Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Sun, 7 Jan 2018 20:54:23 +0100 Subject: make: disable bm_find_binary tests when running embedded --- src/blogc-make/exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/blogc-make/exec.c') diff --git a/src/blogc-make/exec.c b/src/blogc-make/exec.c index dba7e5c..551c7d7 100644 --- a/src/blogc-make/exec.c +++ b/src/blogc-make/exec.c @@ -33,8 +33,8 @@ bm_exec_find_binary(const char *argv0, const char *bin, const char *env) // for embedded blogc-make, if we are looking for blogc, we just return // argv0, because the static binary may not be named `blogc`, and we // prefer to use our own `blogc` instead of some other version around. - if (0 == strcmp(bin, "blogc")) { - return bc_strdup(argv0); + if (argv0 != NULL && bin != NULL && (0 == strcmp(bin, "blogc"))) { + return bc_shell_quote(argv0); } #endif -- cgit v1.2.3-18-g5258