From bdc03533970a2e1a75c98dcff29fba34e5ac341f Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Tue, 8 May 2012 17:07:41 +0400 Subject: [PATCH] Test for architecture in Makefile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4db9d7f..af4940b 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ install: install bin/* ${DESTDIR}/${PREFIX}/bin install -d ${DESTDIR}/${PREFIX}/sbin install sbin/* ${DESTDIR}/${PREFIX}/sbin - -if test x86_64 == `uname -m` ; then \ + -if test x86_64 = `uname -m` ; then \ install -d ${DESTDIR}/${PREFIX}/lib64; \ install lib64/*.so ${DESTDIR}/${PREFIX}/lib64; \ install -d ${DESTDIR}/${PREFIX}/lib64/snail; \