X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flink.cpp;h=95dfaa64ef6582615a8fe28927d804e855fc614a;hb=f5d3127099bc41f986094eb98732849ee9bfb748;hp=f775158cea53d73ab9b9f676b49b77f4f59fe0cb;hpb=be8a901dfc026f61db46d5d64a41cecc619bc97d;p=builder.git diff --git a/source/link.cpp b/source/link.cpp index f775158..95dfaa6 100644 --- a/source/link.cpp +++ b/source/link.cpp @@ -5,7 +5,8 @@ Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ -#include +#include +#include #include "builder.h" #include "component.h" #include "executable.h" @@ -61,9 +62,9 @@ Link::Link(Builder &b, const Executable &exe): argv.push_back("-l"+syslib->get_libname()); } - Path epath=exe.get_name(); + FS::Path epath=exe.get_name(); if(!builder.get_dry_run()) - mkpath(epath.subpath(0, epath.size()-1), 0755); + FS::mkpath(FS::dirname(epath), 0755); announce(comp.get_package().get_name(), tool, relative(epath, work_dir).str());