]> git.tdb.fi Git - builder.git/blobdiff - source/binary.cpp
Move some install location assignments to more logical places
[builder.git] / source / binary.cpp
index 4728cd19e2ee410698d0b6c86ad8fb29d1b0da79..b3f018488347fc090d57839a0a0cc7344eaf40e2 100644 (file)
@@ -3,11 +3,10 @@
 #include "binary.h"
 #include "builder.h"
 #include "component.h"
-#include "install.h"
 #include "link.h"
 #include "objectfile.h"
-#include "package.h"
 #include "sharedlibrary.h"
+#include "sourcepackage.h"
 #include "staticlibrary.h"
 
 using namespace std;
@@ -17,7 +16,6 @@ Binary::Binary(Builder &b, const Component &c, const list<ObjectFile *> &objs):
        FileTarget(b, &c.get_package(), generate_target_path(c)),
        comp(c)
 {
-       buildable = true;
        for(list<ObjectFile *>::const_iterator i=objs.begin(); i!=objs.end(); ++i)
                add_depend(*i);
 }