From 8acb9bf89b406402eaaa75a65dc3377f71463000 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Wed, 17 Sep 2008 07:57:24 +0000 Subject: 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. --- packages/angstrom/angstrom-libc-fixup-hack.bb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 packages/angstrom/angstrom-libc-fixup-hack.bb (limited to 'packages/angstrom') 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 +} -- cgit 1.2.3-korg