X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdatacompile.cpp;h=bec3d4b1f13f003c51859ffc38fc24d2fd411f3e;hb=43bd25ffcb0b4f7882773f4676b209a99cb73c04;hp=9e9a2874b071f0d48641f0e6d76c831fe2508dc6;hpb=b3ce9052ba98a4585aec75117265d170b7ccfdb8;p=builder.git diff --git a/source/datacompile.cpp b/source/datacompile.cpp index 9e9a287..bec3d4b 100644 --- a/source/datacompile.cpp +++ b/source/datacompile.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of builder -Copyright © 2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include #include #include "builder.h" @@ -19,19 +12,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())