From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail5.wrs.com (mail5.windriver.com [192.103.53.11]) by mail.openembedded.org (Postfix) with ESMTP id 0264377E51 for ; Wed, 6 Sep 2017 19:29:54 +0000 (UTC) Received: from ALA-HCB.corp.ad.wrs.com (ala-hcb.corp.ad.wrs.com [147.11.189.41]) by mail5.wrs.com (8.15.2/8.15.2) with ESMTPS id v86JTuVg032266 (version=TLSv1 cipher=AES128-SHA bits=128 verify=OK) for ; Wed, 6 Sep 2017 12:29:56 -0700 Received: from msp-lpggp1.wrs.com (172.25.34.110) by ALA-HCB.corp.ad.wrs.com (147.11.189.41) with Microsoft SMTP Server id 14.3.361.1; Wed, 6 Sep 2017 12:29:55 -0700 From: Mark Hatle To: Date: Wed, 6 Sep 2017 14:23:26 -0500 Message-ID: <1504725809-12825-29-git-send-email-mark.hatle@windriver.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1504725809-12825-1-git-send-email-mark.hatle@windriver.com> References: <1504725809-12825-1-git-send-email-mark.hatle@windriver.com> MIME-Version: 1.0 Subject: [PATCH 28/31] libmtp: remove 'mtp-tools' from PACKAGES 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: , X-List-Received-Date: Wed, 06 Sep 2017 19:29:55 -0000 Content-Type: text/plain mtp-tools is a 'rename' of the ${PN}-bin, so it should not be in the PACKAGES value. If it is, it will result in either an error during packaging or an indeterminate package. Signed-off-by: Mark Hatle --- meta-oe/recipes-connectivity/libmtp/libmtp_1.1.5.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-connectivity/libmtp/libmtp_1.1.5.bb b/meta-oe/recipes-connectivity/libmtp/libmtp_1.1.5.bb index b5df8e0..0819b41 100644 --- a/meta-oe/recipes-connectivity/libmtp/libmtp_1.1.5.bb +++ b/meta-oe/recipes-connectivity/libmtp/libmtp_1.1.5.bb @@ -45,10 +45,10 @@ PACKAGECONFIG[doxygen] = "--enable-doxygen,--disable-doxygen" PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile" PACKAGECONFIG[mtpz] = "--enable-mtpz,--disable-mtpz,libgcrypt" -PACKAGES =+ "libmtp-common libmtp-runtime mtp-tools" +PACKAGES =+ "libmtp-common libmtp-runtime" RDEPENDS_${PN} += "libmtp-common" -RRECOMMENDS_${PN} += "libmtp-runtime mtp-tools" +RRECOMMENDS_${PN} += "libmtp-runtime ${PN}-bin" FILES_${PN}-dbg += "${nonarch_base_libdir}/udev/.debug/*" PKG_${PN}-bin = "mtp-tools" SUMMARY_${PN}-bin = "Tools for communicating with MTP devices" -- 1.8.3.1