X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.cpp;h=53118de754963dc04095c11be4107a49c0ca9ab2;hb=8a98d59b2b4954f51eb3f649d3675af976154de6;hp=0073320504b0daff45e2c9577a93e9ab4c095dff;hpb=ad88e1ba08cf798e5f87796021c947cf500a02e1;p=builder.git diff --git a/source/copy.cpp b/source/copy.cpp index 0073320..53118de 100644 --- a/source/copy.cpp +++ b/source/copy.cpp @@ -1,5 +1,7 @@ +#ifndef _WIN32 #include #include +#endif #include #include #include @@ -16,7 +18,7 @@ Copy::Copy(Builder &b): Tool(b, "CP") { } -Target *Copy::create_target(const list &sources, const string &arg) const +Target *Copy::create_target(const list &sources, const string &arg) { FileTarget &file_tgt = dynamic_cast(*sources.front()); InstalledFile *inst = new InstalledFile(builder, *file_tgt.get_package(), file_tgt, arg); @@ -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) @@ -87,8 +77,11 @@ void Copy::Worker::main() if(!link.empty()) { FS::Path relpath = FS::relative(dst_path, FS::dirname(link)); + if(FS::exists(link)) + FS::unlink(link); symlink(relpath.str().c_str(), link.str().c_str()); } +#endif status = Task::SUCCESS; }