]> git.tdb.fi Git - builder.git/blobdiff - source/datacompile.cpp
Replace per-file copyright notices with a single file
[builder.git] / source / datacompile.cpp
index 9e9a2874b071f0d48641f0e6d76c831fe2508dc6..bec3d4b1f13f003c51859ffc38fc24d2fd411f3e 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include <msp/fs/dir.h>
 #include <msp/fs/utils.h>
 #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())