blob: bf4339a031338fcbf592406968278cff761a9765 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
DESCRIPTION = "Fixup some miscompiled apps by making an extra symlink"
PACKAGE_ARCH = "all"
ALLOW_EMPTY_${PN} = "1"
pkg_postinst_${PN}() {
if [ "x$D" != "x" ]; then
exit 1
fi
ln -sf /lib/libc.so.6 /lib/libc.so
}
|