]> git.tdb.fi Git - builder.git/blobdiff - source/link.cpp
Migrate from msppath to mspfs
[builder.git] / source / link.cpp
index f775158cea53d73ab9b9f676b49b77f4f59fe0cb..95dfaa64ef6582615a8fe28927d804e855fc614a 100644 (file)
@@ -5,7 +5,8 @@ Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
-#include <msp/path/utils.h>
+#include <msp/fs/dir.h>
+#include <msp/fs/utils.h>
 #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());