mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
Different build directory for darwin != 10.10
This commit is contained in:
parent
cc5a53ac38
commit
1b233a9936
6
Makefile
6
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user