From a334319f6530564d22e775935d9c91663623a1b4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 22 Dec 2004 20:10:10 +0000 Subject: (CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4. --- elf/ldd.bash.in | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'elf/ldd.bash.in') diff --git a/elf/ldd.bash.in b/elf/ldd.bash.in index d1591a5785..4d7c33c728 100644 --- a/elf/ldd.bash.in +++ b/elf/ldd.bash.in @@ -1,5 +1,5 @@ #! @BASH@ -# Copyright (C) 1996-2004, 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 1996-2001, 2002, 2003, 2004 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -39,7 +39,7 @@ while test $# -gt 0; do printf $"Copyright (C) %s Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -" "2006" +" "2004" printf $"Written by %s and %s. " "Roland McGrath" "Ulrich Drepper" exit 0 @@ -144,17 +144,13 @@ for file do *) file=./$file ;; esac - if test ! -e "$file"; then + if test ! -f "$file"; then echo "ldd: ${file}:" $"No such file or directory" >&2 result=1 - elif test ! -f "$file"; then - echo "ldd: ${file}:" $"not regular file" >&2 - result=1 elif test -r "$file"; then test -x "$file" || echo 'ldd:' $"\ warning: you do not have execution permission for" "\`$file'" >&2 RTLD= - ret=1 for rtld in ${RTLDLIST}; do if test -x $rtld; then verify_out=`${rtld} --verify "$file"` @@ -164,6 +160,12 @@ warning: you do not have execution permission for" "\`$file'" >&2 esac fi done + if test -z "${RTLD}"; then + set ${RTLDLIST} + RTLD=$1 + verify_out=`${RTLD} --verify "$file"` + ret=$? + fi case $ret in 0) # If the program exits with exit code 5, it means the process has been -- cgit 1.4.1