Different build directory for darwin != 10.10

This commit is contained in:
Javier Marcos 2015-08-12 18:02:25 +02:00
parent cc5a53ac38
commit 1b233a9936

View File

@ -10,7 +10,11 @@ endif
DISTRO := $(shell . ./tools/lib.sh; _platform)
DISTRO_VERSION := $(shell . ./tools/lib.sh; _distro $(DISTRO))
ifeq ($(DISTRO),darwin)
BUILD_DIR = darwin
ifeq ($(DISTRO_VERSION), 10.10)
BUILD_DIR = darwin
else
BUILD_DIR = darwin$(DISTRO_VERSION)
endif
else
BUILD_DIR = $(DISTRO_VERSION)
endif