32-bit libraries was not correctly installed. Fixed.

This commit is contained in:
Kolan Sh 2012-05-15 20:02:57 +04:00
parent e2a6252c76
commit f29f8fa32a
1 changed files with 2 additions and 0 deletions

View File

@ -12,8 +12,10 @@ install:
install sbin/* ${DESTDIR}/${PREFIX}/sbin
if test x86_64 = `uname -m` ; then \
if test -d /usr/lib32 ; then \
install -d ${DESTDIR}/${PREFIX}/lib32; \
install lib32/*.so ${DESTDIR}/${PREFIX}/lib32; \
else \
install -d ${DESTDIR}/${PREFIX}/lib; \
install lib32/*.so ${DESTDIR}/${PREFIX}/lib; \
fi; \
if test -d /usr/lib64 ; then \