Perform installation by source code got from git

I tried to perform an installation of gnuradio from the source code got
from git on ubuntu 10.04. So my steps are :

./bootstrap
./configure
./make
./sudo make install

all the processes are fine without problems, however i want to install
gnuradio in the path:

/usr/lib…

not in

/usr/local/lib…

Which is the file to edit to make my desired path work in the gnuradio
install ? Is it the “configure” or the “makefile” or both ?

thx in advance, Arturo.

By default, make install will install all the files in /usr/local/bin,
/usr/local/lib, etc.

You can specify an installation prefix other than /usr/local using
–prefix option of configure script, for instance

./configure --prefix=/opt

am


Andrea M. IW0HDV