Hi, it seems the easyblock MakeCp does not preserve links when copying files from the list files_to_copy to destination directory. I do not see that in its source code either.
Eg. files_to_copy = [.., (["src/*.so"], 'lib'), ..] Here *.so consist of a file and a link referring to the file: > tree . ├── liblammps_mpi.so └── liblammps.so -> liblammps_mpi.so However, after copying they now look as follows in the target dir. > tree . ├── liblammps_mpi.so └── liblammps.so Does Makecp have some option for similar case? Thank you. Gizo

