Changes to Makefile.
This commit is contained in:
parent
bdc0353397
commit
177e816d19
17
Makefile
17
Makefile
|
@ -10,26 +10,27 @@ install:
|
||||||
install bin/* ${DESTDIR}/${PREFIX}/bin
|
install bin/* ${DESTDIR}/${PREFIX}/bin
|
||||||
install -d ${DESTDIR}/${PREFIX}/sbin
|
install -d ${DESTDIR}/${PREFIX}/sbin
|
||||||
install sbin/* ${DESTDIR}/${PREFIX}/sbin
|
install sbin/* ${DESTDIR}/${PREFIX}/sbin
|
||||||
-if test x86_64 = `uname -m` ; then \
|
if test x86_64 = `uname -m` ; then \
|
||||||
|
if test -d /usr/lib64 ; then \
|
||||||
install -d ${DESTDIR}/${PREFIX}/lib64; \
|
install -d ${DESTDIR}/${PREFIX}/lib64; \
|
||||||
install lib64/*.so ${DESTDIR}/${PREFIX}/lib64; \
|
install lib64/*.so ${DESTDIR}/${PREFIX}/lib64; \
|
||||||
install -d ${DESTDIR}/${PREFIX}/lib64/snail; \
|
|
||||||
if test -d /usr/lib64 -a ! -d /usr/lib ; then \
|
|
||||||
ln -sf lib64 /usr/lib; \
|
|
||||||
else \
|
else \
|
||||||
if test -d /usr/lib -a ! -d /usr/lib64 ; then \
|
install -d ${DESTDIR}/${PREFIX}/lib; \
|
||||||
ln -sf lib /usr/lib64; \
|
install lib64/*.so ${DESTDIR}/${PREFIX}/lib; \
|
||||||
fi; \
|
fi; \
|
||||||
|
if test ! -d /usr/lib ; then \
|
||||||
|
ln -sf lib64 /usr/lib; \
|
||||||
fi; \
|
fi; \
|
||||||
|
install -d ${DESTDIR}/${PREFIX}/lib/snail; \
|
||||||
else \
|
else \
|
||||||
install -d ${DESTDIR}/${PREFIX}/lib; \
|
install -d ${DESTDIR}/${PREFIX}/lib; \
|
||||||
install lib32/*.so ${DESTDIR}/${PREFIX}/lib; \
|
install lib32/*.so ${DESTDIR}/${PREFIX}/lib; \
|
||||||
install -d ${DESTDIR}/${PREFIX}/lib/snail; \
|
install -d ${DESTDIR}/${PREFIX}/lib/snail; \
|
||||||
fi
|
fi; \
|
||||||
install -d ${DESTDIR}/${PREFIX}/share; \
|
install -d ${DESTDIR}/${PREFIX}/share; \
|
||||||
install -d ${DESTDIR}/${PREFIX}/share/snail; \
|
install -d ${DESTDIR}/${PREFIX}/share/snail; \
|
||||||
install -d ${DESTDIR}/${PREFIX}/share/snail/init.d; \
|
install -d ${DESTDIR}/${PREFIX}/share/snail/init.d; \
|
||||||
install share/init.d/* ${DESTDIR}/${PREFIX}/share/snail/init.d; \
|
install share/init.d/* ${DESTDIR}/${PREFIX}/share/snail/init.d
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f ${DESTDIR}/etc/X11/xorg.conf.*.snail
|
rm -f ${DESTDIR}/etc/X11/xorg.conf.*.snail
|
||||||
|
|
|
@ -215,9 +215,10 @@ case "$DISTRIB_ID" in
|
||||||
|
|
||||||
rm -f /etc/alternatives/x86_64-linux-gnu_gl_conf
|
rm -f /etc/alternatives/x86_64-linux-gnu_gl_conf
|
||||||
ln -sf /usr/lib/x86_64-linux-gnu/mesa/ld.so.conf /etc/alternatives/x86_64-linux-gnu_gl_conf
|
ln -sf /usr/lib/x86_64-linux-gnu/mesa/ld.so.conf /etc/alternatives/x86_64-linux-gnu_gl_conf
|
||||||
|
ldconfig
|
||||||
rm -f /usr/lib/x86_64-linux-gnu/xorg/extra-modules
|
rm -f /usr/lib/x86_64-linux-gnu/xorg/extra-modules
|
||||||
#ln -sf /usr/lib/x86_64-linux-gnu/mesa /usr/lib/x86_64-linux-gnu/xorg/extra-modules
|
#ln -sf /usr/lib/x86_64-linux-gnu/mesa /usr/lib/x86_64-linux-gnu/xorg/extra-modules
|
||||||
ldconfig
|
#ln -sf /usr/lib/opengl/nvidia/lib/libnvidia-tls.so.[0-9][0-9]* /usr/lib/snail/
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in New Issue