X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.cpp;h=53118de754963dc04095c11be4107a49c0ca9ab2;hb=8a98d59b2b4954f51eb3f649d3675af976154de6;hp=2d2a7ca9c023c557954e05924d9181f4280dae97;hpb=d6f7c89d762191e0845e3636c0bc0cc1989b209f;p=builder.git diff --git a/source/copy.cpp b/source/copy.cpp index 2d2a7ca..53118de 100644 --- a/source/copy.cpp +++ b/source/copy.cpp @@ -1,5 +1,7 @@ +#ifndef _WIN32 #include #include +#endif #include #include #include @@ -65,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) @@ -78,6 +81,7 @@ void Copy::Worker::main() FS::unlink(link); symlink(relpath.str().c_str(), link.str().c_str()); } +#endif status = Task::SUCCESS; }