From 34fe05b1b2c0258c570cf77d05c9ab6ef56fa49d Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Wed, 20 Jan 2016 10:33:25 +0100 Subject: [PATCH] message-port: Prevent running ldconfig if not on system Without this change, bitbake tries to run ldconfig on host instead and then complains (but not fail !) about permission issue like : /sbin/ldconfig.real: \ Can't create temporary cache file /etc/ld.so.cache~: \ Permission denied Note, "or condition" is prefered because of shell's -e option. Change-Id: I0f1c9b6389ed37cccf6ad9d2a6bf77966043f2da Signed-off-by: Philippe Coval --- .../recipes-application-framework/message-port/message-port.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-tizen-common-base/recipes-application-framework/message-port/message-port.inc b/meta-tizen-common-base/recipes-application-framework/message-port/message-port.inc index e023e82..5f59c51 100644 --- a/meta-tizen-common-base/recipes-application-framework/message-port/message-port.inc +++ b/meta-tizen-common-base/recipes-application-framework/message-port/message-port.inc @@ -113,7 +113,7 @@ do_install() { pkg_postinst_libmessage-port() { #!/bin/sh -e - ldconfig + [ "" != "$D" ] || ldconfig } @@ -136,7 +136,7 @@ pkg_postrm_${PN}() { pkg_postrm_libmessage-port() { #!/bin/sh -e - ldconfig + [ "" != "$D" ] || ldconfig # daemon: message-port } -- 2.7.4