Rene Rebe wrote:
> Hi again,
>
> On Friday 27 October 2006 11:03, Rene Rebe wrote:
>
>> Good morning Luca,
>>
>> On Friday 27 October 2006 10:09, Luca wrote:
>>
>>> ===[glibc_prepatch:106 (last $?=0)> tar --use-compress-program=bzip2 -x
>>> --files-from x -v -f
>>> /sources/T2/t2-trunk/download/mirror/g/glibc-ports-2.5.tar.bz2
>>> tar: Pattern matching characters used in file names. Please,
>>> tar: use --wildcards to enable pattern matching, or --no-wildcards to
>>> tar: suppress this warning.
>>> tar: *sysdeps*: Not found in archive
>>> tar: Error exit delayed from previous errors
>>>
>>> Hope can help me in understanding this behavior,
>>>
>> Yeah this is a regression caused by the new tar version. Just adding
>> the --wildcards option fixes this - but old tar versions don't know about
>> this so I want do rework this code piece to not rely on this tar option.
>>
>> I'll try to do so today - or maybe you want to unpack in this way without
>> the --wildcards option?
>>
>
> This is now fixed with a very simple solution in trunk:
>
> - ln -s . `echo $tarball | sed -e 's,[^/]*/,,g' -e s/.tar.*//`
> - # do not overwrite the configure script and such
> - if [[ $tarball = *ports* ]]; then
> - echo -e "*sysdeps*" > x
> - else
> - echo -e "*linuxthreads*" > x
> - fi
> - tar ${taropt%f} --files-from x -v -f $tarball ; rm x
> + local x="`echo $tarball | sed -e 's,[^/]*/,,g' -e s/.tar.*//`"
> + ln -sv . $x
> +
> + tar ${taropt%f} --exclude $x/Makefile -f $tarball
>
> :-)
>
> Yours,
>
>
Good afternoon Rene!
Thanks for informing me about the fix.
I'm trying some new packages and some (added) extra config options (like
locales, timezone, servers, papersize, etc...) but still stuck with
coreutils-6.4 and texinfo-4.8a in stage1.
I compiled the two packages on the host system without problems, from
debug.sh in the two $builddir too, but when passing
"./scripts/Build-Target -cfg system -job 1-{coreutils,texinfo} " they
broke (these are the only two updated packages that broke in stage1).
Yours,
Luca
|