X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpkgconfig.cpp;h=1c7bed3a1eb51e9d79295cd2c1da9bd09a12633e;hb=463a3521e27870294455373f9c69279069611975;hp=e8fca575200eddf305fa1af8e2b3cef9b844f531;hpb=be8a901dfc026f61db46d5d64a41cecc619bc97d;p=builder.git diff --git a/source/pkgconfig.cpp b/source/pkgconfig.cpp index e8fca57..1c7bed3 100644 --- a/source/pkgconfig.cpp +++ b/source/pkgconfig.cpp @@ -1,19 +1,11 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include "package.h" #include "pkgconfig.h" #include "pkgconfigaction.h" PkgConfig::PkgConfig(Builder &b, const SourcePackage &p): - Target(b, &p, (p.get_source()/(p.get_name()+".pc")).str()), - pkg(p) + FileTarget(b, &p, p.get_source()/(p.get_name()+".pc")) { - buildable=true; + buildable = true; } Action *PkgConfig::create_action()