From c79d27ee0709b6a66cfcaf5ef1192009b504d2d6 Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Wed, 30 Apr 2014 05:41:14 -0400 Subject: [PATCH] build: remove unnecessary flag from CMAKE_FLAGS We now append the deps install area into CMAKE_PREFIX_PATH. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0f7c1f0440..6cb7b57369 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -include local.mk -CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=Debug -DCMAKE_PREFIX_PATH=.deps/usr +CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=Debug BUILD_TYPE ?= $(shell (type ninja > /dev/null 2>&1 && echo "Ninja") || \ echo "Unix Makefiles")