diff options
author | Amy Fong <amy.fong@windriver.com> | 2012-07-09 14:50:17 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-17 10:53:53 +0100 |
commit | b1c2b57b3eaf1d96985b60746555fd4d69bbed1c (patch) | |
tree | 80bde6f00ff6b79f9d0dada92ebf6c8214c55d08 /meta/recipes-devtools | |
parent | 1f7f9258c4c37e4c54854dcc6b4ba7a4a2828efd (diff) | |
download | poky-b1c2b57b3eaf1d96985b60746555fd4d69bbed1c.tar.gz |
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>
Diffstat (limited to 'meta/recipes-devtools')
0 files changed, 0 insertions, 0 deletions