I'm trying to install glib in a non-standard prefix but I get the following when running make install
:
/bin/sh ../libtool --mode=install /usr/bin/install -c libgthread-2.0.la '/root/build/lib'
libtool: install: error: cannot install `libgthread-2.0.la' to a directory not ending in /usr/local/lib
Any reason why I have to install gthread only in a prefix ending with /usr/local/lib?
./configure --prefix=<prefix_of_your_choice>
? Trymake clean ; make distclean; ./configure --prefix=<prefix_of_your_choice> && make && make install
– Diatomaceous../gcc-4.7.0/configure --prefix=/root/build/usr/local/
to make it work. – Shockey