From 13c47b6f6677686cf35e6b7463b9c7cb871e9d76 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 11 Oct 2023 20:45:12 +0200 Subject: [PATCH] common/hooks/post-install/80-prepare-32bit.sh: use dot to reference directory content instead of wildcard fixes #46612 --- common/hooks/post-install/80-prepare-32bit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/post-install/80-prepare-32bit.sh b/common/hooks/post-install/80-prepare-32bit.sh index 31be7d6ab81609..4bc0bde0f76f53 100644 --- a/common/hooks/post-install/80-prepare-32bit.sh +++ b/common/hooks/post-install/80-prepare-32bit.sh @@ -61,7 +61,7 @@ hook() { elif [ "$lib32mode" = "full" ]; then # Full 32bit mode; copy everything to new destdir. mkdir -p ${destdir32} - cp -a ${PKGDESTDIR}/* ${destdir32}/ + cp -a ${PKGDESTDIR}/. ${destdir32}/ # remove symlink if [ -h ${destdir32}/usr/lib32 ]; then rm ${destdir32}/usr/lib32