Redirect warnings and error messages to stderr.

This commit is contained in:
Ulrich Drepper 1998-08-20 17:24:33 +00:00
parent f02dc9e33b
commit 809672c41d
2 changed files with 12 additions and 10 deletions

View File

@ -35,7 +35,7 @@ while test $# -gt 0; do
case "$1" in case "$1" in
--v | --ve | --ver | --vers | --versi | --versio | --version) --v | --ve | --ver | --vers | --versi | --versio | --version)
echo $"ldd (GNU libc) @VERSION@ echo $"ldd (GNU libc) @VERSION@
Copyright (C) 1996, 1997 Free Software Foundation, Inc. Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
exit 0 exit 0
@ -93,7 +93,8 @@ case $# in
exit 1 exit 1
elif test -r "$file"; then elif test -r "$file"; then
test -x "$file" || test -x "$file" ||
echo $"ldd: warning: you do not have execution permission for" "\`$file'" echo $"\
ldd: warning: you do not have execution permission for" "\`$file'" >&2
if ${RTLD} --verify "$file"; then if ${RTLD} --verify "$file"; then
LD_TRACE_LOADED_OBJECTS=1 exec ${RTLD} ${RELOCS} "$file" || exit 1 LD_TRACE_LOADED_OBJECTS=1 exec ${RTLD} ${RELOCS} "$file" || exit 1
else else
@ -101,7 +102,7 @@ case $# in
exit 1 exit 1
fi fi
else else
echo $"ldd: error: you do not have read permission for" "\`$file'" echo $"ldd: error: you do not have read permission for" "\`$file'" >&2
exit 1 exit 1
fi fi
exit exit
@ -122,7 +123,7 @@ case $# in
result=1 result=1
elif test -r "$file"; then elif test -r "$file"; then
test -x "$file" || echo $"\ test -x "$file" || echo $"\
ldd: warning: you do not have execution permission for" "\`$file'" ldd: warning: you do not have execution permission for" "\`$file'" >&2
if ${RTLD} --verify "$file"; then if ${RTLD} --verify "$file"; then
LD_TRACE_LOADED_OBJECTS=1 ${RTLD} ${RELOCS} "$file" || result=1 LD_TRACE_LOADED_OBJECTS=1 ${RTLD} ${RELOCS} "$file" || result=1
else else
@ -130,7 +131,7 @@ ldd: warning: you do not have execution permission for" "\`$file'"
result=1 result=1
fi fi
else else
echo $"ldd: error: you do not have read permission for" "\`$file'" echo $"ldd: error: you do not have read permission for" "\`$file'" >&2
result=1 result=1
fi fi
done done

View File

@ -31,7 +31,7 @@ while test $# -gt 0; do
case "$1" in case "$1" in
--v | --ve | --ver | --vers | --versi | --versio | --version) --v | --ve | --ver | --vers | --versi | --versio | --version)
echo 'ldd (GNU libc) @VERSION@ echo 'ldd (GNU libc) @VERSION@
Copyright (C) 1996, 1997 Free Software Foundation, Inc. Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.' warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.'
exit 0 exit 0
@ -92,7 +92,8 @@ Try \`ldd --help' for more information."
else else
if test -r "$file"; then if test -r "$file"; then
test -x "$file" || test -x "$file" ||
echo "ldd: warning: you do not have execution permission for \`$file'" echo "\
ldd: warning: you do not have execution permission for \`$file'" >&2
if ${RTLD} --verify "$file"; then if ${RTLD} --verify "$file"; then
LD_TRACE_LOADED_OBJECTS=1 exec ${RTLD} ${RELOCS} "$file" || exit 1 LD_TRACE_LOADED_OBJECTS=1 exec ${RTLD} ${RELOCS} "$file" || exit 1
else else
@ -100,7 +101,7 @@ Try \`ldd --help' for more information."
exit 1 exit 1
fi fi
else else
echo "ldd: error: you do not have read permission for \`$file'" echo "ldd: error: you do not have read permission for \`$file'" >&2
exit 1 exit 1
fi fi
fi fi
@ -123,7 +124,7 @@ Try \`ldd --help' for more information."
else else
if test -r "$file"; then if test -r "$file"; then
test -x "$file" || echo "\ test -x "$file" || echo "\
ldd: warning: you do not have execution permission for \`$file'" ldd: warning: you do not have execution permission for \`$file'" >&2
if ${RTLD} --verify "$file"; then if ${RTLD} --verify "$file"; then
LD_TRACE_LOADED_OBJECTS=1 ${RTLD} ${RELOCS} "$file" || result=1 LD_TRACE_LOADED_OBJECTS=1 ${RTLD} ${RELOCS} "$file" || result=1
else else
@ -131,7 +132,7 @@ ldd: warning: you do not have execution permission for \`$file'"
result=1 result=1
fi fi
else else
echo "ldd: error: you do not have read permission for \`$file'" echo "ldd: error: you do not have read permission for \`$file'" >&2
result=1 result=1
fi fi
fi fi