I am trying to install Glog 0.3.4 https://github.com/google/glog/releases on my machine even though I don't have sudo access. I ran the following commands:
./configure --prefix=/usr/local
make
make install
which results in the following error
$ make install
make[1]: Entering directory `/glog-0.3.4'
/bin/mkdir -p '/usr/local/lib'
/bin/bash ./libtool --mode=install /usr/bin/install -c libglog.la
'/usr/local/lib'
libtool: install: /usr/bin/install -c .libs/libglog.so.0.0.0
/usr/local/lib/libglog.so.0.0.0
/usr/bin/install: cannot create regular file
'/usr/local/lib/libglog.so.0.0.0': Permission denied
make[1]: *** [install-libLTLIBRARIES] Error 1
How to overcome this error and finalize my installation? I don't have any sudo access to the machine. Thank you!