Anonymous - 2002-11-23

On my Linux machine SUSE Linux 8.1 the following error occurred:
rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory

This behaviour can be fixed by adding:

unset LD_ASSUME_KERNEL

below the block:
# glibc floating stack problem on Linux
if [ `uname -s` = Linux ]
then
        case `uname -r` in
        2.[456]*)
                LD_ASSUME_KERNEL=2.2.5
                export LD_ASSUME_KERNEL
                ;;
        esac
fi

or just delete the block

Joachim