Makefile: no lib64 for OSX
This commit is contained in:
parent
e20b2ae38d
commit
dbe27845ad
2
Makefile
2
Makefile
|
@ -37,9 +37,11 @@ LIBDIR = $(DESTDIR)$(PREFIX)/lib
|
||||||
UNAME_M := $(shell uname -m)
|
UNAME_M := $(shell uname -m)
|
||||||
ifeq ($(UNAME_M), x86_64)
|
ifeq ($(UNAME_M), x86_64)
|
||||||
ifeq (,$(wildcard $(LIBDIR)))
|
ifeq (,$(wildcard $(LIBDIR)))
|
||||||
|
ifneq ($(UNAME_S), Darwin)
|
||||||
LIBDIR = $(DESTDIR)$(PREFIX)/lib64
|
LIBDIR = $(DESTDIR)$(PREFIX)/lib64
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
LIBDATADIR = $(LIBDIR)
|
LIBDATADIR = $(LIBDIR)
|
||||||
UNAME_S := $(shell uname -s)
|
UNAME_S := $(shell uname -s)
|
||||||
|
|
Loading…
Reference in New Issue