ROOT not properly installed

After installing Root 5.04/00 (downloaded from CVS)
(with a script included below),
I get this error when I start root:

[dhcppc2] /work/projects/alice/new/root/tutorials % root
Error in TCint::LoadLibraryMap: library map empty, no system.rootmap file found. ROOT not properly installed.

What gets wrong here?

My platform is Linux RH 9, gcc 3.2.2

Thank you,

Ivana


#! /bin/sh
cd $ROOTSYS
if [ ! -d $ROOTSYS/lib ]; then
mkdir -p $ROOTSYS/lib
fi
ln -s /work/packages/pythia/libPythia6.so lib/libPythia6.so
./configure linux --with-pythia6-libdir=$ROOTSYS/lib
–enable-rfio
gmake

run
gmake map

see the installation page

Rene

Thank you, Rene, it is ok now.
I was looking at README/INSTALL file when I got the error,
if something has changed with this new version.
The changes seem not to be passed here
(I followed 3.1.)

Ivana