From: Koen Kooi Date: Wed, 17 Sep 2008 07:57:24 +0000 (+0000) Subject: angstrom-libc-fixup-hack: add hack to fix runtime crashes for programs that linked... X-Git-Tag: Release-2010-05/1~6080 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8acb9bf89b406402eaaa75a65dc3377f71463000;p=openembedded.git angstrom-libc-fixup-hack: add hack to fix runtime crashes for programs that linked against libc.so in the time the toolchain was broken. This package will be used till the feeds have been cleaned out. --- diff --git a/packages/angstrom/angstrom-libc-fixup-hack.bb b/packages/angstrom/angstrom-libc-fixup-hack.bb new file mode 100644 index 0000000000..bf4339a031 --- /dev/null +++ b/packages/angstrom/angstrom-libc-fixup-hack.bb @@ -0,0 +1,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 +}