From 23ca60ecd2530a778e494aeb1508e32420526fe2 Mon Sep 17 00:00:00 2001 From: Nathan Ross Date: Fri, 25 Dec 2015 00:56:02 -0500 Subject: [PATCH] fix error in overriding build during install --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3ab541ba1..8117e6caa 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ PROFILE ?= debug ifneq (,$(filter install, $(MAKECMDGOALS))) override PROFILE:=release -override BUILD:=INSTALL -override DONT_BUILD:=DONT_INSTALL +override BUILD:=$(INSTALL) +override DONT_BUILD:=$(DONT_INSTALL) endif MULTICALL ?= n