Re: glibc @BASH@ thing

2008-06-03 Thread Petr Ovtchenkov
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

Re: glibc @BASH@ thing

2008-06-03 Thread Gilles Espinasse
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

Re: glibc @BASH@ thing

2008-06-03 Thread Mateusz Grotek
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

Re: glibc @BASH@ thing

2008-06-03 Thread Gilles Espinasse
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

Re: glibc @BASH@ thing

2008-06-03 Thread Mateusz Grotek
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> /

Re: glibc @BASH@ thing

2008-06-02 Thread Bruce Dubbs
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

glibc @BASH@ thing

2008-06-02 Thread Mateusz Grotek
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