diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-09-10 22:27:37 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-09-10 22:27:37 +0000 |
commit | 97d529fac68105f0d3d34c699a4ac10489c705e8 (patch) | |
tree | 409473d54238525c7b41347458448a19c909ad8a /src/performcommand.cpp | |
parent | 47cda1de3cfde56d8a8a69d535d38309bc2b7981 (diff) | |
download | build-97d529fac68105f0d3d34c699a4ac10489c705e8.tar.gz build-97d529fac68105f0d3d34c699a4ac10489c705e8.tar.bz2 build-97d529fac68105f0d3d34c699a4ac10489c705e8.tar.xz build-97d529fac68105f0d3d34c699a4ac10489c705e8.zip |
Almost done tweaking the variable system, it needed support for local, or
"extra" variables.
Diffstat (limited to '')
-rw-r--r-- | src/performcommand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/performcommand.cpp b/src/performcommand.cpp index 7505061..6963022 100644 --- a/src/performcommand.cpp +++ b/src/performcommand.cpp | |||
@@ -14,7 +14,7 @@ PerformCommand::~PerformCommand() | |||
14 | Perform *PerformCommand::duplicate( Build &bld, const std::string &cont ) | 14 | Perform *PerformCommand::duplicate( Build &bld, const std::string &cont ) |
15 | { | 15 | { |
16 | Perform *pRet = new PerformCommand(); | 16 | Perform *pRet = new PerformCommand(); |
17 | pRet->copyData( this, bld, cont ); | 17 | pRet->copyData( this, bld, cont, NULL ); |
18 | return pRet; | 18 | return pRet; |
19 | } | 19 | } |
20 | 20 | ||