aboutsummaryrefslogtreecommitdiff
path: root/src/functiongetmakedeps.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/functiongetmakedeps.cpp')
-rw-r--r--src/functiongetmakedeps.cpp2
1 files changed, 1 insertions, 1 deletions
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
33Variable FunctionGetMakeDeps::call( Variable &/*input*/, VarList lParams ) 33Variable FunctionGetMakeDeps::call( Variable &/*input*/, VarList lParams )
34{ 34{
35 pContext->getView()->cmdStarted( lParams.first().getString().getStr() ); 35 pContext->getView()->cmdStarted( lParams.first().getString().getStr() );
36 Process p( Process::StdOut, "/bin/bash", "/bin/bash", "-c", 36 Process p( Process::StdOut, "/bin/sh", "/bin/sh", "-c",
37 lParams.first().getString().getStr(), NULL ); 37 lParams.first().getString().getStr(), NULL );
38 38
39 // Gather all data from the command. 39 // Gather all data from the command.