From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (dan.rpsys.net [93.97.175.187]) by mail.openembedded.org (Postfix) with ESMTP id ACAD96C782 for ; Wed, 30 Oct 2013 13:05:40 +0000 (UTC) Received: from localhost (dan.rpsys.net [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id r9UD5aMB015709 for ; Wed, 30 Oct 2013 13:05:36 GMT X-Virus-Scanned: Debian amavisd-new at dan.rpsys.net Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id cyXFvalhszf8 for ; Wed, 30 Oct 2013 13:05:36 +0000 (GMT) Received: from [192.168.3.10] (rpvlan0 [192.168.3.10]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id r9UD5WAM015690 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT) for ; Wed, 30 Oct 2013 13:05:34 GMT Message-ID: <1383138327.25877.23.camel@ted> From: Richard Purdie To: openembedded-core Date: Wed, 30 Oct 2013 13:05:27 +0000 X-Mailer: Evolution 3.6.4-0ubuntu1 Mime-Version: 1.0 Subject: [PATCH] rpm: Fix FILES_${PN} X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Oct 2013 13:05:42 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit In a recent commit, the FILES expression for rpm accidentally moved a large portion of rpm-build into rpm: http://git.yoctoproject.org/cgit.cgi/poky/commit/?id=2e557556e03f4e86795cf331ccf06acd4c373045 Since rpm-build requires perl, this caused a number of build failures when the rpm-build package was attempted to be used since it references /usr/bin/perl. This commit restores the previous contents of the rpm package. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/rpm/rpm_5.4.9.bb b/meta/recipes-devtools/rpm/rpm_5.4.9.bb index 9699639..5498541 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.9.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.9.bb @@ -224,7 +224,6 @@ FILES_${PN} = "${bindir}/rpm \ ${libdir}/rpm/bin/rpmrepo \ ${libdir}/rpm/bin/rpmspecdump \ ${libdir}/rpm/bin/wget \ - ${libdir}/rpm \ ${localstatedir}/cache \ ${localstatedir}/cache/rpm \ ${localstatedir}/cache/wdj \