diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-03-31 00:31:32 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-03-31 00:31:32 +0000 |
commit | ff824b1d9d5d2aa031188263d2098b2e35f86189 (patch) | |
tree | c256896ca7181b17a33d9735b4e8305f02645636 /packages/glibc/glibc-2.4/ldd-unbash.patch | |
parent | d94cd14b70790a834f87ad0f72c7e9e6020b8da9 (diff) |
glibc 2.5: Fix common case of GNU arrogance, make ldd work on posix shell.
* Not bumping PR, to save people trouble. Leaving for decision to OE maintainers.
Diffstat (limited to 'packages/glibc/glibc-2.4/ldd-unbash.patch')
-rw-r--r-- | packages/glibc/glibc-2.4/ldd-unbash.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/glibc/glibc-2.4/ldd-unbash.patch b/packages/glibc/glibc-2.4/ldd-unbash.patch new file mode 100644 index 0000000000..2fb8854b49 --- /dev/null +++ b/packages/glibc/glibc-2.4/ldd-unbash.patch @@ -0,0 +1,11 @@ +--- glibc-2.5/elf/ldd.bash.in.org 2006-04-30 16:06:20.000000000 +0000 ++++ glibc-2.5/elf/ldd.bash.in 2007-03-30 19:18:57.000000000 +0000 +@@ -110,7 +110,7 @@ + # environments where the executed program might not have permissions + # to write to the console/tty. But only bash 3.x supports the pipefail + # option, and we don't bother to handle the case for older bash versions. +-if set -o pipefail 2> /dev/null; then ++if false; then + try_trace() { + eval $add_env '"$@"' | cat + } |