From 7ca8e2fd4e2cb712d6bac31e3c00a261a4e28102 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 29 Sep 2022 18:08:20 -0700 Subject: Oops, assumed bash, using sh now. It should use the SHELL environment variable, and have a backup list, and use shells as defined by the buildscript. --- src/functiongetmakedeps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/functiongetmakedeps.cpp') diff --git a/src/functiongetmakedeps.cpp b/src/functiongetmakedeps.cpp index a44f653..69003ba 100644 --- a/src/functiongetmakedeps.cpp +++ b/src/functiongetmakedeps.cpp @@ -33,7 +33,7 @@ Bu::String FunctionGetMakeDeps::getName() const Variable FunctionGetMakeDeps::call( Variable &/*input*/, VarList lParams ) { pContext->getView()->cmdStarted( lParams.first().getString().getStr() ); - Process p( Process::StdOut, "/bin/bash", "/bin/bash", "-c", + Process p( Process::StdOut, "/bin/sh", "/bin/sh", "-c", lParams.first().getString().getStr(), NULL ); // Gather all data from the command. -- cgit v1.2.3