On Tuesday 03 June 2008 15:18:39 Mateusz Grotek wrote:
> >
> Yes. I understand that. So i'm trying to send this patch to libc-alpha
> too. I donno if glibc utilities would work with dash (without bash
> installed). But if it is possible, we could give users choice which
> shell they like. Pe
Selon Mateusz Grotek <[EMAIL PROTECTED]>:
> Yes. I understand that. So i'm trying to send this patch to libc-alpha
> too. I donno if glibc utilities would work with dash (without bash
> installed). But if it is possible, we could give users choice which
> shell they like. People from ubuntu made d
Gilles Espinasse pisze:
> Selon Mateusz Grotek <[EMAIL PROTECTED]>:
>
>
>> Bruce Dubbs pisze:
>>
>>> Mateusz Grotek wrote:
>>>
>>>
> ...
>
and that's all. With this fix it works correctly and this sed thing if
LFS book isn't needed. You could ask why this solution is bet
Selon Mateusz Grotek <[EMAIL PROTECTED]>:
> Bruce Dubbs pisze:
> > Mateusz Grotek wrote:
> >
...
> >> and that's all. With this fix it works correctly and this sed thing if
> >> LFS book isn't needed. You could ask why this solution is better than fix?
> >> It is, because it enables you not to use
Bruce Dubbs pisze:
> Mateusz Grotek wrote:
>
>> Hi. There is some simple solution to make ldd.bash.in work with dash,
>> and other shells.
>> Change this line:
>> BEGIN
>> if set -o pipefail 2> /dev/null; then
>> END
>> to these two lines:
>> BEGIN
>> if set -o | grep pipefail 1> /dev/null 2> /
Mateusz Grotek wrote:
> Hi. There is some simple solution to make ldd.bash.in work with dash,
> and other shells.
> Change this line:
> BEGIN
> if set -o pipefail 2> /dev/null; then
> END
> to these two lines:
> BEGIN
> if set -o | grep pipefail 1> /dev/null 2> /dev/null; then
> set -o pipefai
Hi. There is some simple solution to make ldd.bash.in work with dash,
and other shells.
Change this line:
BEGIN
if set -o pipefail 2> /dev/null; then
END
to these two lines:
BEGIN
if set -o | grep pipefail 1> /dev/null 2> /dev/null; then
set -o pipefail 2> /dev/null
END
and that's all. With th