From 9778e65b44252ff8a1e543185df1d71510bce471 Mon Sep 17 00:00:00 2001 From: Jonathon Reinhart Date: Sun, 23 Aug 2015 22:22:57 -0400 Subject: [PATCH] Fix make.sh for systems with /usr/lib64 path The ${MAKE} was superfluous, causing an unnecessary invocation of make, and causing LIBDIRARCH=lib64 to not actually be set for the 'make install'. This now matches the uninstall() function. --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 36e9f5e5..92d2db3a 100755 --- a/make.sh +++ b/make.sh @@ -54,7 +54,7 @@ install() { PREFIX=/usr/local ${MAKE} install else # not OSX - test -d /usr/lib64 && ${MAKE} LIBDIRARCH=lib64 + test -d /usr/lib64 && LIBDIRARCH=lib64 ${MAKE} install fi }