From bfaff0f4c3d4a03e4183fcd0a472c1390501dcc0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?K=C3=A9vin=20THIERRY?= Date: Fri, 8 Aug 2014 11:30:55 +0200 Subject: [PATCH] meta-tizen: avsystem: update recipe MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit New generated recipe: do not try to execute "systemctl daemon-reload" when creating the image. Change-Id: I6439ca173e5ce03d8efe5ac9f4adaaf18b5e85ff (From meta-tizen rev: 1555627c9e373f414bdb64c452387fe11cac2006) Signed-off-by: Kévin THIERRY Signed-off-by: Patrick Ohly --- meta-tizen/recipes-tizen/avsystem/avsystem.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-tizen/recipes-tizen/avsystem/avsystem.inc b/meta-tizen/recipes-tizen/avsystem/avsystem.inc index 481e512..bde8729 100644 --- a/meta-tizen/recipes-tizen/avsystem/avsystem.inc +++ b/meta-tizen/recipes-tizen/avsystem/avsystem.inc @@ -114,7 +114,7 @@ pkg_postinst_libavsysaudio() { pkg_postinst_${PN}() { #!/bin/sh -e - systemctl daemon-reload + [ "x\$D" == "x" ] && systemctl daemon-reload if [ $1 == 1 ]; then systemctl restart avsystem.service fi @@ -140,7 +140,7 @@ pkg_postrm_libavsysaudio() { pkg_postrm_${PN}() { #!/bin/sh -e - systemctl daemon-reload + [ "x\$D" == "x" ] && systemctl daemon-reload } -- 2.7.4