X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.cpp;h=6fd6161989f24450ca4352b60126f474d545f366;hb=6ed04f66e56958890c2ecca82fa3885f10f8adf0;hp=0dcb62f01a057dfc66085f3524ccf5553d586cc5;hpb=2992094d86385f06bf9c86bb1d35ad8fe857f257;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp index 0dcb62f..6fd6161 100644 --- a/source/binary.cpp +++ b/source/binary.cpp @@ -20,10 +20,10 @@ Binary::Binary(Builder &b, const Component &c, const string &p, const list::const_iterator i=objs.begin(); i!=objs.end(); ++i) - add_depend(**i); + add_dependency(**i); } -void Binary::find_depends() +void Binary::find_dependencies() { if(!component) return; @@ -64,6 +64,6 @@ void Binary::find_depends() for(list::iterator j=i; (last && j!=dep_libs.end()); ++j) last = (j==i || *j!=*i); if(last) - add_depend(**i); + add_dependency(**i); } }