From 1d447534d3c087240602a40472f92bb193de1bd3 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Sat, 29 Mar 2014 05:48:12 -0700 Subject: [PATCH] Makefile: no lib64 for OSX --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index fb85483d..c14efb52 100644 --- a/Makefile +++ b/Makefile @@ -37,9 +37,11 @@ LIBDIR = $(DESTDIR)$(PREFIX)/lib UNAME_M := $(shell uname -m) ifeq ($(UNAME_M), x86_64) ifeq (,$(wildcard $(LIBDIR))) +ifneq ($(UNAME_S), Darwin) LIBDIR = $(DESTDIR)$(PREFIX)/lib64 endif endif +endif LIBDATADIR = $(LIBDIR) UNAME_S := $(shell uname -s)