mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-22 02:16:44 +00:00
In this case "mv A B" works slightly different than "cp A B; rm A" as symbolic links come into play. The statements should copy the contents of A into the symboliv link at B (preserving it as is) and remove A. The mv would replace the link B by the binary A. Fixes #805.