diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2016-10-27 15:49:46 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-16 10:33:33 +0000 |
commit | 0f87812a515ae349885929558fbfb315f4a10ec7 (patch) | |
tree | 64d1e9953eea4c3dab22f613d9061e06bcfb93b8 | |
parent | eaed926c023d1e25c29dcfc078c37461e29895b9 (diff) | |
download | openembedded-core-0f87812a515ae349885929558fbfb315f4a10ec7.tar.gz openembedded-core-0f87812a515ae349885929558fbfb315f4a10ec7.tar.bz2 openembedded-core-0f87812a515ae349885929558fbfb315f4a10ec7.zip |
rpm: fix file location of rpm2cpio.real
rpm2cpio is in ${PN}-common, but rpm2cpio.real is in ${PN}. This seperation
is really weird. Put them both in ${PN}-common.
(From OE-Core rev: 8a0af7e4ae8ba8ce0c7fd2a9f6ab7cc070f47af0)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/recipes-devtools/rpm/rpm_5.4.16.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.16.bb b/meta/recipes-devtools/rpm/rpm_5.4.16.bb index 1332397120..85eb5fef1e 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.16.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.16.bb @@ -384,10 +384,10 @@ FILES_${PN} = "${bindir}/rpm \ ${localstatedir}/lib/wdj \ ${bindir}/rpm.real \ ${bindir}/rpmconstant.real \ - ${bindir}/rpm2cpio.real \ " FILES_${PN}-common = "${bindir}/rpm2cpio \ + ${bindir}/rpm2cpio.real \ ${bindir}/gendiff \ ${sysconfdir}/rpm \ ${localstatedir}/spool/repackage \ |