From 428401a1bd8db068e87e7e16af0d20054f4444ac Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Thu, 18 Dec 2014 11:19:02 -0500 Subject: [PATCH] build: Do not conditionally set variables. make implementations should be overriding variable values. This change was made to support ATS build environment, which fails to override variable values. --- build/ck.build.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/ck.build.in b/build/ck.build.in index 3ddf999..1d6bfe3 100644 --- a/build/ck.build.in +++ b/build/ck.build.in @@ -1,5 +1,5 @@ -CC?=@CC@ -MAKE?=make +CC=@CC@ +MAKE=make SRC_DIR=@SRC_DIR@ BUILD_DIR=@BUILD_DIR@ CFLAGS+=@CFLAGS@ -I$(SRC_DIR)/include -I$(BUILD_DIR)/include