While trying to install a program from source I found that it installed libraries to /usr/lib/[program]/ and because this is on a 64-bit system it didn’t work. I had to copy the libraries to /usr/lib64/[program]. Note that the library files are python and therefore architecture-independent.
The Makefile has:
libdir = /usr/lib
How can I make libdir equal lib64 on 64-bit systems and lib on 32-bit?
Try this: