From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from heian.cn.fujitsu.com (unknown [59.151.112.132]) by mail.openembedded.org (Postfix) with ESMTP id 5C5FF6011A for ; Fri, 20 May 2016 02:22:08 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.22,518,1449504000"; d="scan'208";a="6726112" Received: from unknown (HELO cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 20 May 2016 10:22:09 +0800 Received: from G08CNEXCHPEKD02.g08.fujitsu.local (unknown [10.167.33.83]) by cn.fujitsu.com (Postfix) with ESMTP id 0431B42B66FA for ; Fri, 20 May 2016 10:22:05 +0800 (CST) Received: from localhost.localdomain (10.167.226.24) by G08CNEXCHPEKD02.g08.fujitsu.local (10.167.33.89) with Microsoft SMTP Server (TLS) id 14.3.279.2; Fri, 20 May 2016 10:22:04 +0800 From: Dai Caiyun To: Message-ID: <1456615592-11508-1-git-send-email-daicy.fnst@cn.fujitsu.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 X-Originating-IP: [10.167.226.24] X-yoursite-MailScanner-ID: 0431B42B66FA.AC721 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: daicy.fnst@cn.fujitsu.com X-Spam-Status: No Subject: [meta-oe][PATCH] openct: Fix rootfs creation errors X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Fri, 20 May 2016 02:22:11 -0000 X-Original-Date: Sun, 28 Feb 2016 02:26:32 +0300 X-List-Received-Date: Fri, 20 May 2016 02:22:11 -0000 Content-Type: text/plain To fix error as following: file /var/run from install of openct-0.6.20-r0 conflicts with file from package base-files-3.0.14 Signed-off-by: Dai Caiyun --- meta-oe/recipes-support/openct/openct_0.6.20.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-oe/recipes-support/openct/openct_0.6.20.bb b/meta-oe/recipes-support/openct/openct_0.6.20.bb index bf1ff57..d4ad9c1 100644 --- a/meta-oe/recipes-support/openct/openct_0.6.20.bb +++ b/meta-oe/recipes-support/openct/openct_0.6.20.bb @@ -55,6 +55,9 @@ FILES_${PN}-dbg += " \ INSANE_SKIP_${PN} += "dev-deps" +do_install_append() { + rm -r ${D}/${localstatedir}/run +} do_install () { rm -rf ${D} -- 1.8.4.2