1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-15 17:50:07 +00:00
Files
poky/meta/classes
Amy Fong b1c2b57b3e package install failure on systems without /sbin/ldconfig
Package install failures due to issues in post install rules.

package_do_shlibs only looks for libraries in a directory "lib", this should be
modified to the variable baselib.

ldconfig_postinst_fragment failure observed on systems without /sbin/ldconfig
        [ -x /sbin/ldconfig ] && /sbin/ldconfig
results in the post install rule returning a failure. Modify to
        if [ -x /sbin/ldconfig ]; then /sbin/ldconfig; fi

(From OE-Core rev: 3f85ab6d0d05a4e34fe73fa343d2b3b942fc69b7)

Signed-off-by: Amy Fong <amy.fong@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-07-17 10:53:53 +01:00
..
2011-11-30 22:18:08 +00:00
2012-03-27 13:26:36 +01:00
2012-03-08 11:55:37 -08:00
2012-07-03 14:54:57 +01:00
2012-07-03 14:54:57 +01:00
2012-02-26 12:52:12 +00:00