Skip to content
Snippets Groups Projects
Commit a4745436 authored by Walter Lozano's avatar Walter Lozano
Browse files

Re-enable use of ln -r to drop delta from Debian


Previous versions or Aperits used an old coreutils-gplv2 which did not
support ln -r. After switching to rust-coreutils, ln -r is available,
which allows to drop this delta.

This also fixes issues with systems with not merged usr, like in LAVA
NFS image.

Signed-off-by: default avatarWalter Lozano <walter.lozano@collabora.com>
parent 449f09bd
No related branches found
No related tags found
1 merge request!7T8073: Re-enable use of ln -r to drop delta from Debian
......@@ -200,7 +200,7 @@ copy_file() {
# Create a relative link so it always points
# to the right place
ln -s "${link_target}" "${DESTDIR}/${target}"
ln -rs "${DESTDIR}/${link_target}" "${DESTDIR}/${target}"
fi
# Copy the link target if it doesn't already exist
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment