aboutsummaryrefslogtreecommitdiff
path: root/src/performcommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/performcommand.cpp')
-rw-r--r--src/performcommand.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/performcommand.cpp b/src/performcommand.cpp
index 6963022..f6da4ac 100644
--- a/src/performcommand.cpp
+++ b/src/performcommand.cpp
@@ -11,10 +11,15 @@ PerformCommand::~PerformCommand()
11{ 11{
12} 12}
13 13
14Perform *PerformCommand::duplicate( Build &bld, const std::string &cont ) 14Perform *PerformCommand::duplicate( Build &bld, const std::string &cont, VarMap *mExtra )
15{ 15{
16 Perform *pRet = new PerformCommand(); 16 Perform *pRet = new PerformCommand();
17 pRet->copyData( this, bld, cont, NULL ); 17 pRet->copyData( this, bld, cont, mExtra );
18 return pRet; 18 return pRet;
19} 19}
20 20
21void PerformCommand::execute( Build &bld )
22{
23 system( lParam.front().c_str() );
24}
25