I'm maintaining an autotools-configured project, and I've noticed in a plain autotool setup:
libtoolize --verbose --copy --force
aclocal --verbose -I m4 -Wall
autoheader -Wall --verbose
autoconf -Wall --verbose
automake --add-missing --force-missing --copy --warnings=override -Wall
./configure --prefix=/usr
make
make install
Installing libexample.so in /usr/lib
that the make install resulting from my build (on x86_64 arch, linux) puts
generated libraries in $prefix/lib
.
I was expecting the library(s) to have an $LIBDIR
set to $prefix/lib64
.
- Is there something I should do differently, or
- is there a 'secret' m4 macro to automatically determine this, or
- is the the expected behavior?