diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2010-08-20 12:20:52 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-20 23:26:40 +0100 |
commit | 6c12afd57d2d25f532285cad6ab09a37eb3f548c (patch) | |
tree | f4b950be468443fa8beae343fb7f530387c7d397 /meta/packages/glibc/glibc-2.10.1/ldd-unbash.patch | |
parent | 179e056519c5ad761b2d942d7196664874c155e4 (diff) | |
download | openembedded-core-6c12afd57d2d25f532285cad6ab09a37eb3f548c.tar.gz openembedded-core-6c12afd57d2d25f532285cad6ab09a37eb3f548c.tar.bz2 openembedded-core-6c12afd57d2d25f532285cad6ab09a37eb3f548c.zip |
glibc: bring back needed patches from older recipes
while removing old glibc recipes some needed patches from
older recipes got wiped out. Bringing them back.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/packages/glibc/glibc-2.10.1/ldd-unbash.patch')
-rw-r--r-- | meta/packages/glibc/glibc-2.10.1/ldd-unbash.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/packages/glibc/glibc-2.10.1/ldd-unbash.patch b/meta/packages/glibc/glibc-2.10.1/ldd-unbash.patch new file mode 100644 index 0000000000..2fb8854b49 --- /dev/null +++ b/meta/packages/glibc/glibc-2.10.1/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 + } |