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.
This commit is contained in:
Jonathon Reinhart 2015-08-23 22:22:57 -04:00
parent 557e004426
commit 9778e65b44

View File

@ -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
}