]> git.tdb.fi Git - builder.git/blobdiff - source/archive.cpp
Migrate from msppath to mspfs
[builder.git] / source / archive.cpp
index 63d1635bee578e37f0bf6c75c786ebcf6294e168..175a0ae385cf9113d2b29a516741919d607422cf 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 "archive.h"
 #include "builder.h"
 #include "component.h"
@@ -33,9 +34,9 @@ Archive::Archive(Builder &b, const StaticLibrary &lib):
                if(dynamic_cast<ObjectFile *>(*i))
                        argv.push_back(relative((*i)->get_name(), work_dir).str());
 
-       Path lpath=lib.get_name();
+       FS::Path lpath=lib.get_name();
        if(!builder.get_dry_run())
-               mkpath(lpath.subpath(0, lpath.size()-1), 0755);
+               FS::mkpath(FS::dirname(lpath), 0755);
 
        announce(comp.get_package().get_name(), tool, relative(lpath, work_dir).str());