* [PATCH 0/1] Fix rpm typo for multilib
@ 2011-08-01 11:54 Yu Ke
2011-08-01 11:54 ` [PATCH 1/1] package_rpm.bbclass: fix one typo Yu Ke
2011-08-01 12:05 ` [PATCH 0/1] Fix rpm typo for multilib Koen Kooi
0 siblings, 2 replies; 6+ messages in thread
From: Yu Ke @ 2011-08-01 11:54 UTC (permalink / raw)
To: richard.purdie, openembedded-core
The following changes since commit f94b781695cd8fa387daff16ecbf3987a0883018:
Bruce Ashfield (1):
poky.conf: explicitly referenced preferred linux-yocto version
are available in the git repository at:
git://git.pokylinux.org/poky-contrib kyu3/ml-rpm
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kyu3/ml-rpm
Yu Ke (1):
package_rpm.bbclass: fix one typo
meta/classes/package_rpm.bbclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/1] package_rpm.bbclass: fix one typo
2011-08-01 11:54 [PATCH 0/1] Fix rpm typo for multilib Yu Ke
@ 2011-08-01 11:54 ` Yu Ke
2011-08-01 13:17 ` Richard Purdie
2011-08-01 14:37 ` Mark Hatle
2011-08-01 12:05 ` [PATCH 0/1] Fix rpm typo for multilib Koen Kooi
1 sibling, 2 replies; 6+ messages in thread
From: Yu Ke @ 2011-08-01 11:54 UTC (permalink / raw)
To: richard.purdie, openembedded-core
fix the MLPREFIX referrence typo which cause multilib rpm
do_rootfs failure
CC: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Yu Ke <ke.yu@intel.com>
---
meta/classes/package_rpm.bbclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass
index 0377100..ded744b 100644
--- a/meta/classes/package_rpm.bbclass
+++ b/meta/classes/package_rpm.bbclass
@@ -248,7 +248,7 @@ package_install_internal_rpm () {
echo "Processing $pkg..."
archvar=base_package_archs
- ml_pkg=$(echo ${pkg} | sed "s,$^{MLPREFIX}\(.*\),\1,")
+ ml_pkg=$(echo ${pkg} | sed "s,^${MLPREFIX}\(.*\),\1,")
if [ "${ml_pkg}" != "${pkg}" ]; then
archvar=ml_package_archs
fi
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 0/1] Fix rpm typo for multilib
2011-08-01 11:54 [PATCH 0/1] Fix rpm typo for multilib Yu Ke
2011-08-01 11:54 ` [PATCH 1/1] package_rpm.bbclass: fix one typo Yu Ke
@ 2011-08-01 12:05 ` Koen Kooi
2011-08-01 12:37 ` Yu Ke
1 sibling, 1 reply; 6+ messages in thread
From: Koen Kooi @ 2011-08-01 12:05 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
Op 1 aug. 2011, om 13:54 heeft Yu Ke het volgende geschreven:
> The following changes since commit f94b781695cd8fa387daff16ecbf3987a0883018:
> Bruce Ashfield (1):
> poky.conf: explicitly referenced preferred linux-yocto version
>
> are available in the git repository at:
>
> git://git.pokylinux.org/poky-contrib kyu3/ml-rpm
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kyu3/ml-rpm
When submitting patches to oe-core please base them against oe-core, not poky.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/1] Fix rpm typo for multilib
2011-08-01 12:05 ` [PATCH 0/1] Fix rpm typo for multilib Koen Kooi
@ 2011-08-01 12:37 ` Yu Ke
0 siblings, 0 replies; 6+ messages in thread
From: Yu Ke @ 2011-08-01 12:37 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi
On 2011/8/1 20:05, Koen Kooi wrote:
>
> Op 1 aug. 2011, om 13:54 heeft Yu Ke het volgende geschreven:
>
>> The following changes since commit f94b781695cd8fa387daff16ecbf3987a0883018:
>> Bruce Ashfield (1):
>> poky.conf: explicitly referenced preferred linux-yocto version
>>
>> are available in the git repository at:
>>
>> git://git.pokylinux.org/poky-contrib kyu3/ml-rpm
>> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kyu3/ml-rpm
>
> When submitting patches to oe-core please base them against oe-core, not poky.
Fair enough. here is the new branch:
http://git.pokylinux.org/cgit/cgit.cgi/poky-contrib/log/?h=kyu3/oecore/ml-rpm
Regards
Ke
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] package_rpm.bbclass: fix one typo
2011-08-01 11:54 ` [PATCH 1/1] package_rpm.bbclass: fix one typo Yu Ke
@ 2011-08-01 13:17 ` Richard Purdie
2011-08-01 14:37 ` Mark Hatle
1 sibling, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2011-08-01 13:17 UTC (permalink / raw)
To: Yu Ke; +Cc: openembedded-core
On Mon, 2011-08-01 at 19:54 +0800, Yu Ke wrote:
> fix the MLPREFIX referrence typo which cause multilib rpm
> do_rootfs failure
>
> CC: Mark Hatle <mark.hatle@windriver.com>
>
> Signed-off-by: Yu Ke <ke.yu@intel.com>
> ---
> meta/classes/package_rpm.bbclass | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] package_rpm.bbclass: fix one typo
2011-08-01 11:54 ` [PATCH 1/1] package_rpm.bbclass: fix one typo Yu Ke
2011-08-01 13:17 ` Richard Purdie
@ 2011-08-01 14:37 ` Mark Hatle
1 sibling, 0 replies; 6+ messages in thread
From: Mark Hatle @ 2011-08-01 14:37 UTC (permalink / raw)
To: openembedded-core
acked-by: Mark Hatle <mark.hatle@windriver.com>
On 8/1/11 6:54 AM, Yu Ke wrote:
> fix the MLPREFIX referrence typo which cause multilib rpm
> do_rootfs failure
>
> CC: Mark Hatle <mark.hatle@windriver.com>
>
> Signed-off-by: Yu Ke <ke.yu@intel.com>
> ---
> meta/classes/package_rpm.bbclass | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass
> index 0377100..ded744b 100644
> --- a/meta/classes/package_rpm.bbclass
> +++ b/meta/classes/package_rpm.bbclass
> @@ -248,7 +248,7 @@ package_install_internal_rpm () {
> echo "Processing $pkg..."
>
> archvar=base_package_archs
> - ml_pkg=$(echo ${pkg} | sed "s,$^{MLPREFIX}\(.*\),\1,")
> + ml_pkg=$(echo ${pkg} | sed "s,^${MLPREFIX}\(.*\),\1,")
> if [ "${ml_pkg}" != "${pkg}" ]; then
> archvar=ml_package_archs
> fi
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-08-01 14:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-01 11:54 [PATCH 0/1] Fix rpm typo for multilib Yu Ke
2011-08-01 11:54 ` [PATCH 1/1] package_rpm.bbclass: fix one typo Yu Ke
2011-08-01 13:17 ` Richard Purdie
2011-08-01 14:37 ` Mark Hatle
2011-08-01 12:05 ` [PATCH 0/1] Fix rpm typo for multilib Koen Kooi
2011-08-01 12:37 ` Yu Ke
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox