From a075325ad3e73325ec6b524f70592aa8bb10bbe7 Mon Sep 17 00:00:00 2001 From: firasuke Date: Sun, 14 Jan 2024 19:29:39 +0000 Subject: [PATCH] squashfs-tools: no need to create symlinks manually So there are two issues here, the first being that these symlinks are created automatically upon installation, and the second being that the symlinks being manually created were flipped (you were linking `sqfscat` to `mksquashfs` when it should be `unsquashfs`, and `sqfstar` to `unsquashfs` when it should be `mksquashfs). --- recipes/tools/squashfs-tools/recipe | 7 ------- 1 file changed, 7 deletions(-) diff --git a/recipes/tools/squashfs-tools/recipe b/recipes/tools/squashfs-tools/recipe index ab622907..c51c1c5a 100644 --- a/recipes/tools/squashfs-tools/recipe +++ b/recipes/tools/squashfs-tools/recipe @@ -77,13 +77,6 @@ build() cd ../ - # Re-create symlinks for utilities - ( - cd "${destdir}/usr/bin" || exit 1 - ln -sf mksquashfs sqfscat - ln -sf unsquashfs sqfstar - ) - # Copy documentation mkdir -p "${destdir}/$docsdir" cp -p $docs "${destdir}/$docsdir" -- 2.11.4.GIT