mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
base-hw: preserve symbolic link bin/core
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.
This commit is contained in:
committed by
Christian Helmuth
parent
76d449ebe6
commit
e717ad656f
@@ -207,7 +207,8 @@ proc build_boot_image {binaries} {
|
||||
}
|
||||
|
||||
# retrieve stand-alone core
|
||||
exec mv core/core.standalone bin/core
|
||||
exec cp core/core.standalone bin/core
|
||||
exec rm core/core.standalone
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user