mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 00:48:06 +01:00
7 lines
170 B
Bash
7 lines
170 B
Bash
# This hook removes the wordsize specific libdir symlink.
|
|
|
|
hook() {
|
|
if [ "${pkgname}" != "base-files" ]; then
|
|
rm -f ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE}
|
|
fi
|
|
}
|