|
Sorry! buddy but I do not think there is.However it is not that much of a big deal you can do a:
:$make distclean
this removes all your makefiles generated by your first ./configure and assigned to the initial --prefix=/path/to/prefix in your case, this being /usr/local.Now after you have done this you must do a new configure and set a directory you have permissions to, like:
:$./configure --prefix=/home/homedir/progname
:$make
:$make install
This means that when you run make install, all your libs and bins will be placed in the progname directory in your home folder, beware though you must never delete the progname folder or else your programme is gone.My personal advice, use prefix like this :
$:./configure --prefix=/home/homedir/.progname
Not 100% sure it will work but with the full-stop at the beginning of the folder name it effectively becomes a hidden folder, you therefore never need to worry about deleting it, you won't even see it.
Hope this helps.
Old saying : "The best things in life a free"
Old saying updated :"The best things in life are open source"
|