diff options
Diffstat (limited to 'elf/ldd.sh.in')
-rw-r--r-- | elf/ldd.sh.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/ldd.sh.in b/elf/ldd.sh.in index 908a26e..1de55f4 100644 --- a/elf/ldd.sh.in +++ b/elf/ldd.sh.in @@ -44,7 +44,7 @@ Written by Roland McGrath and Ulrich Drepper.' -d, --data-relocs process data relocations -r, --function-relocs process data and function relocations -v, --verbose print all information -Report bugs using the \`glibcbug' script to <bugs@gnu.ai.mit.edu>." +Report bugs using the \`glibcbug' script to <bugs@gnu.org>." exit 0 ;; -d | --d | --da | --dat | --data | --data- | --data-r | --data-re | \ --data-rel | --data-relo | --data-reloc | --data-relocs) @@ -85,7 +85,7 @@ Try \`ldd --help' for more information." 1) # We don't list the file name when there is only one. case "$1" in - /*) file="$1" ;; + */*) file="$1" ;; *) file="./$1" ;; esac if test ! -f "$file"; then @@ -124,7 +124,7 @@ Try \`ldd --help' for more information." for file; do echo "${file}:" case "$file" in - /*) : ;; + */*) : ;; *) file="./$file" ;; esac if test ! -f "$file"; then |