This is the mail archive of the libc-help@sourceware.org mailing list for the glibc project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
On Tuesday 03 June 2008, Mateusz Grotek wrote: > I'd like to adress some problem with glibc. In Linux From Scratch > project you have to use some sed substitution during glibc compilation > to change default interpreter of ldd.bash.in (from @BASH@ to /bin/bash). > It's because when configure discovers that only sh is available. this was a bug in the configure script that i already had fixed > It's simple: > change the line: > BEGIN > if set -o pipefail 2>/dev/null; then > END > to 2 lines: > BEGIN > if set -o | grep pipefail 1> /dev/null 2> /dev/null; then > set -o pipefail 2> /dev/null > END > Now it'll work with dash too. drepper already rejected this approach ... search the mailing list archives please -mike
Attachment:
signature.asc
Description: This is a digitally signed message part.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |