X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.cpp;h=53118de754963dc04095c11be4107a49c0ca9ab2;hb=b45cfe5e437ca79bb3176618769628c58c0734d1;hp=24be942532b83ab52a0dcfdeb8446ad29d708edf;hpb=9e28243c9687608ec3c32954b4031490296ae877;p=builder.git diff --git a/source/copy.cpp b/source/copy.cpp index 24be942..53118de 100644 --- a/source/copy.cpp +++ b/source/copy.cpp @@ -1,5 +1,7 @@ +#ifndef _WIN32 #include #include +#endif #include #include #include @@ -28,7 +30,10 @@ Task *Copy::run(const Target &target) const { const InstalledFile &install = dynamic_cast(target); Worker *worker = new Worker(install); - return new InternalTask(worker); + InternalTask *task = new InternalTask(worker); + task->add_file(install.get_path()); + task->set_unlink(); + return task; } @@ -41,22 +46,6 @@ void Copy::Worker::main() const FileTarget &source = target.get_source(); const FS::Path &src_path = source.get_path(); const FS::Path &dst_path = target.get_path(); - FS::mkpath(FS::dirname(dst_path), 0755); - - // Remove old file. Not doing this would cause Bad Stuff when installing libraries. - if(FS::exists(dst_path)) - { - try - { - unlink(dst_path); - } - catch(const exception &e) - { - IO::print(IO::cerr, "%s\n", e.what()); - status = Task::ERROR; - return; - } - } try { @@ -78,6 +67,7 @@ void Copy::Worker::main() return; } +#ifndef _WIN32 // Preserve file permissions struct stat st; if(stat(src_path.str().c_str(), &st)==0) @@ -91,6 +81,7 @@ void Copy::Worker::main() FS::unlink(link); symlink(relpath.str().c_str(), link.str().c_str()); } +#endif status = Task::SUCCESS; }