mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
common/hooks/post-install/80-prepare-32bit.sh: use dot to reference directory content instead of wildcard
fixes #46612
This commit is contained in:
parent
dcaf66c6f9
commit
38eb546f46
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ hook() {
|
||||||
elif [ "$lib32mode" = "full" ]; then
|
elif [ "$lib32mode" = "full" ]; then
|
||||||
# Full 32bit mode; copy everything to new destdir.
|
# Full 32bit mode; copy everything to new destdir.
|
||||||
mkdir -p ${destdir32}
|
mkdir -p ${destdir32}
|
||||||
cp -a ${PKGDESTDIR}/* ${destdir32}/
|
cp -a ${PKGDESTDIR}/. ${destdir32}/
|
||||||
# remove symlink
|
# remove symlink
|
||||||
if [ -h ${destdir32}/usr/lib32 ]; then
|
if [ -h ${destdir32}/usr/lib32 ]; then
|
||||||
rm ${destdir32}/usr/lib32
|
rm ${destdir32}/usr/lib32
|
||||||
|
|
Loading…
Add table
Reference in a new issue