X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdatacompile.cpp;h=5fa5a53b2d8aa4b8b135754bb59b26a51cc6cff3;hb=04c316da6d5d90e43cba262f54d90ca231f703bf;hp=9e9a2874b071f0d48641f0e6d76c831fe2508dc6;hpb=55a110c49b85482c4079745211cc599f4508945f;p=builder.git diff --git a/source/datacompile.cpp b/source/datacompile.cpp index 9e9a287..5fa5a53 100644 --- a/source/datacompile.cpp +++ b/source/datacompile.cpp @@ -19,19 +19,19 @@ using namespace Msp; DataCompile::DataCompile(Builder &b, ::DataFile &dfile): ExternalAction(b) { - const Component &comp=dfile.get_component(); + const Component &comp = dfile.get_component(); - work_dir=comp.get_package().get_source(); + work_dir = comp.get_package().get_source(); argv.push_back("mspdatatool"); argv.push_back("-c"); argv.push_back("-b"); - FS::Path opath=dfile.get_path(); + FS::Path opath = dfile.get_path(); argv.push_back("-o"); argv.push_back(relative(opath, work_dir).str()); - FS::Path spath=dfile.get_source().get_path(); + FS::Path spath = dfile.get_source().get_path(); argv.push_back(relative(spath, work_dir).str()); if(!builder.get_dry_run())