Skip to content

Commit 9eb5cdf

Browse files
committed
1
1 parent 7b3a340 commit 9eb5cdf

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,12 @@ BUILD_DIR := "${CURRENT_DIR}build"
199199
INTEGRATION_TEST_BIN := ${BUILD_DIR}/cassandra-integration-tests
200200
CMAKE_FLAGS ?=
201201
CMAKE_BUILD_TYPE ?= Release
202-
CMAKE_INSTALL_PREFIX ?= /usr
202+
203+
ifeq ($(OS_TYPE),macos)
204+
CMAKE_INSTALL_PREFIX ?= /usr/local
205+
else
206+
CMAKE_INSTALL_PREFIX ?= /usr
207+
endif
203208

204209
ifeq ($(OS_TYPE),macos)
205210
CPACK_GENERATORS ?= DragNDrop productbuild

0 commit comments

Comments
 (0)