aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-08-14 22:46:36 +0000
committerMike Buland <eichlan@xagasoft.com>2009-08-14 22:46:36 +0000
commit6f2f2358affacfa067426a334e911ce9485bf59b (patch)
treee23ce996ab195dd4a44498ca60f67023d0c98743
parente3180ada12753c23d67be6a9eb9c19fb92f6c8e5 (diff)
downloadbuild-6f2f2358affacfa067426a334e911ce9485bf59b.tar.gz
build-6f2f2358affacfa067426a334e911ce9485bf59b.tar.bz2
build-6f2f2358affacfa067426a334e911ce9485bf59b.tar.xz
build-6f2f2358affacfa067426a334e911ce9485bf59b.zip
Corrected a minor bug preventing custom actions from being executed.
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 4153982..1d3dc10 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -139,7 +139,7 @@ int main( int argc, char *argv[] )
139 } 139 }
140 else 140 else
141 { 141 {
142 if( !prm.sAction.isSet() ) 142 if( prm.sAction.isSet() )
143 pBuild->execAction( prm.sAction.getStr() ); 143 pBuild->execAction( prm.sAction.getStr() );
144 else 144 else
145 pBuild->execAction(""); 145 pBuild->execAction("");