All of lore.kernel.org
 help / color / mirror / Atom feed
* bzip2-full-native_1.0.5.bb problem and possible fix
@ 2009-02-16 13:22 GNUtoo
  2009-02-16 13:59 ` Roman I Khimov
  0 siblings, 1 reply; 5+ messages in thread
From: GNUtoo @ 2009-02-16 13:22 UTC (permalink / raw)
  To: openembedded-devel

hello, what's the reason of:
>cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
in bzip2-full-native_1.0.5.bb
I've:
>| cp: will not overwrite just-created
`/home/embedded/oetmp_openmoko/work/i686-linux/bzip2-full-native-1.0.5-r0/bzip2-1.0.5/install-sh'
with
`/home/embedded/oetmp_openmoko/staging/i686-linux/usr/share/automake-1.9/install-sh'

if I remove :
cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
It works.

should I commit the change or was this line here for a reason?

by the way here's my setup:
*om-gta02 machine
*openmoko distro

(I've also a bug device to test(armv6) (without a working LCD))
Denis.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bzip2-full-native_1.0.5.bb problem and possible fix
  2009-02-16 13:22 bzip2-full-native_1.0.5.bb problem and possible fix GNUtoo
@ 2009-02-16 13:59 ` Roman I Khimov
  2009-02-16 17:00   ` GNUtoo
  2009-02-16 23:35   ` Vitus Jensen
  0 siblings, 2 replies; 5+ messages in thread
From: Roman I Khimov @ 2009-02-16 13:59 UTC (permalink / raw)
  To: openembedded-devel

GNUtoo:
> I've:
> >| cp: will not overwrite just-created
>
> `/home/embedded/oetmp_openmoko/work/i686-linux/bzip2-full-native-1.0.5-r0
>/bzip2-1.0.5/install-sh' with
> `/home/embedded/oetmp_openmoko/staging/i686-linux/usr/share/automake-1.9/
>install-sh'

Most probably you've worked with automake 1.9, then switched to automake 
1.10 (or reverse way) and got two automakes in staging directory, then 
this:

> cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/

which should expand as (for example)

cp ${STAGING_DATADIR_NATIVE}/automake-1.10/install-sh ${S}/

expands as

cp ${STAGING_DATADIR_NATIVE}/automake-1.10/install-sh \
	${STAGING_DATADIR_NATIVE}/automake-1.9/install-sh ${S}/

Boom.

Had this on automake switch too, not sure how to fix it better, but it's not 
a problem when you only use one automake (and you can clean up stale 
version manually if you switched from one version to another).



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bzip2-full-native_1.0.5.bb problem and possible fix
  2009-02-16 13:59 ` Roman I Khimov
@ 2009-02-16 17:00   ` GNUtoo
  2009-02-16 23:35   ` Vitus Jensen
  1 sibling, 0 replies; 5+ messages in thread
From: GNUtoo @ 2009-02-16 17:00 UTC (permalink / raw)
  To: openembedded-devel

> GNUtoo:
>> I've:
>> >| cp: will not overwrite just-created
>>
>> `/home/embedded/oetmp_openmoko/work/i686-linux/bzip2-full-native-1.0.5-r0
>>/bzip2-1.0.5/install-sh' with
>> `/home/embedded/oetmp_openmoko/staging/i686-linux/usr/share/automake-1.9/
>>install-sh'
>
> Most probably you've worked with automake 1.9, then switched to automake
> 1.10 (or reverse way) and got two automakes in staging directory, then
> this:
>
>> cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
>
> which should expand as (for example)
>
> cp ${STAGING_DATADIR_NATIVE}/automake-1.10/install-sh ${S}/
>
> expands as
>
> cp ${STAGING_DATADIR_NATIVE}/automake-1.10/install-sh \
> 	${STAGING_DATADIR_NATIVE}/automake-1.9/install-sh ${S}/
>
> Boom.
>
> Had this on automake switch too, not sure how to fix it better, but it's
> not
> a problem when you only use one automake (and you can clean up stale
> version manually if you switched from one version to another).
ah ok thanks a lot.
Denis.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bzip2-full-native_1.0.5.bb problem and possible fix
  2009-02-16 13:59 ` Roman I Khimov
  2009-02-16 17:00   ` GNUtoo
@ 2009-02-16 23:35   ` Vitus Jensen
  1 sibling, 0 replies; 5+ messages in thread
From: Vitus Jensen @ 2009-02-16 23:35 UTC (permalink / raw)
  To: openembedded-devel

Am Mon, 16 Feb 2009 16:59:09 +0300 schrieb Roman I Khimov:

> GNUtoo:
>> I've:
>> >| cp: will not overwrite just-created
>>
>> `/home/embedded/oetmp_openmoko/work/i686-linux/bzip2-full-native-1.0.5-
r0
>>/bzip2-1.0.5/install-sh' with
>> `/home/embedded/oetmp_openmoko/staging/i686-linux/usr/share/
automake-1.9/
>>install-sh'
> 
> Most probably you've worked with automake 1.9, then switched to automake
> 1.10 (or reverse way) and got two automakes in staging directory, then
> this:
> 
>> cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
> 
> which should expand as (for example)
> 
> cp ${STAGING_DATADIR_NATIVE}/automake-1.10/install-sh ${S}/
> 
> expands as
> 
> cp ${STAGING_DATADIR_NATIVE}/automake-1.10/install-sh \
> 	${STAGING_DATADIR_NATIVE}/automake-1.9/install-sh ${S}/
> 
> Boom.
> 
> Had this on automake switch too, not sure how to fix it better, but it's
> not a problem when you only use one automake (and you can clean up stale
> version manually if you switched from one version to another).

http://bugs.openembedded.net/show_bug.cgi?id=4911

It's the issue described there, right?  I had this problem once but it 
mysteriously went away.  Probably after wiping TMPDIR but "bitbake bzip2 -
c clean" would have been enough?

Vitus

-- 
Vitus Jensen, Hannover, Germany, Earth, Milky Way, Universe (current)




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bzip2-full-native_1.0.5.bb problem and possible fix
@ 2009-02-16 13:22 GNUtoo
  0 siblings, 0 replies; 5+ messages in thread
From: GNUtoo @ 2009-02-16 13:22 UTC (permalink / raw)
  To: openembedded-devel

hello, what's the reason of:
>cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
in bzip2-full-native_1.0.5.bb
I've:
>| cp: will not overwrite just-created
`/home/embedded/oetmp_openmoko/work/i686-linux/bzip2-full-native-1.0.5-r0/bzip2-1.0.5/install-sh'
with
`/home/embedded/oetmp_openmoko/staging/i686-linux/usr/share/automake-1.9/install-sh'

if I remove :
cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
It works.

should I commit the change or was this line here for a reason?

by the way here's my setup:
*om-gta02 machine
*openmoko distro

(I've also a bug device to test(armv6) (without a working LCD))



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-02-16 23:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-16 13:22 bzip2-full-native_1.0.5.bb problem and possible fix GNUtoo
2009-02-16 13:59 ` Roman I Khimov
2009-02-16 17:00   ` GNUtoo
2009-02-16 23:35   ` Vitus Jensen
  -- strict thread matches above, loose matches on Subject: below --
2009-02-16 13:22 GNUtoo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.