aboutsummaryrefslogtreecommitdiff
path: root/src/runner.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-05-16 05:19:48 +0000
committerMike Buland <eichlan@xagasoft.com>2010-05-16 05:19:48 +0000
commitd66465a69fdc7922fa372e80cfae23e2fe3a6396 (patch)
tree6127aa0e5c300a5ae7aa22c1195002ca46490589 /src/runner.cpp
parenta2c615fe781cc64a4603d6ba198ea4fd91b36c8d (diff)
downloadbuild-d66465a69fdc7922fa372e80cfae23e2fe3a6396.tar.gz
build-d66465a69fdc7922fa372e80cfae23e2fe3a6396.tar.bz2
build-d66465a69fdc7922fa372e80cfae23e2fe3a6396.tar.xz
build-d66465a69fdc7922fa372e80cfae23e2fe3a6396.zip
Works with the minor changes that have happened to libbu++, it's ready for new
features and fixes :)
Diffstat (limited to 'src/runner.cpp')
-rw-r--r--src/runner.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runner.cpp b/src/runner.cpp
index 947f2f5..e1f3da9 100644
--- a/src/runner.cpp
+++ b/src/runner.cpp
@@ -748,7 +748,7 @@ Variable Runner::run( AstBranch::NodeList::const_iterator n )
748 else 748 else
749 { 749 {
750 Bu::FString sTag = vTags.toString(); 750 Bu::FString sTag = vTags.toString();
751 if( sTag ) 751 if( sTag.isSet() )
752 { 752 {
753 rCont.addTargetToTag( pCurTarget, sTag ); 753 rCont.addTargetToTag( pCurTarget, sTag );
754 } 754 }
@@ -775,7 +775,7 @@ Variable Runner::run( AstBranch::NodeList::const_iterator n )
775 else 775 else
776 { 776 {
777 Bu::FString sTag = vTags.toString(); 777 Bu::FString sTag = vTags.toString();
778 if( sTag ) 778 if( sTag.isSet() )
779 { 779 {
780 pCurRule->addTag( sTag ); 780 pCurRule->addTag( sTag );
781 } 781 }