]> git.tdb.fi Git - builder.git/blobdiff - source/archive.cpp
Further changes for library compatibility
[builder.git] / source / archive.cpp
index 64a88afc63227d33a186de482859d8fd391b3115..a56891b3df15880c33f3da4521a92ef4bd758502 100644 (file)
@@ -21,21 +21,21 @@ using namespace Msp;
 Archive::Archive(Builder &b, const StaticLibrary &lib):
        ExternalAction(b)
 {
-       const Component &comp=lib.get_component();
+       const Component &comp = lib.get_component();
 
-       work_dir=comp.get_package().get_source();
+       work_dir = comp.get_package().get_source();
 
-       std::string tool="AR";
+       std::string tool = "AR";
        argv.push_back(builder.get_current_arch().get_tool(tool));
        argv.push_back("rc");
 
        argv.push_back(relative(lib.get_path(), work_dir).str());
-       const TargetList &deps=lib.get_depends();
+       const TargetList &deps = lib.get_depends();
        for(TargetList::const_iterator i=deps.begin(); i!=deps.end(); ++i)
-               if(ObjectFile *obj=dynamic_cast<ObjectFile *>(*i))
+               if(ObjectFile *obj = dynamic_cast<ObjectFile *>(*i))
                        argv.push_back(relative(obj->get_path(), work_dir).str());
 
-       FS::Path lpath=lib.get_path();
+       FS::Path lpath = lib.get_path();
        if(!builder.get_dry_run())
        {
                FS::mkpath(FS::dirname(lpath), 0755);