aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/redis/redis/hiredis-use-default-CC-if-it-is-set.patch
blob: 8135fc28e3122faf864069d448b533d1d66b71ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From dc745a33f3875cc72d41bd34ed490b352e546352 Mon Sep 17 00:00:00 2001
From: Venture Research <tech@ventureresearch.com>
Date: Fri, 8 Feb 2013 17:39:52 -0600
Subject: [PATCH] hiredis: use default CC if it is set

Instead of trying to automagically figure out CC, which breaks with OE
as CC has spaces in it, just skip it if one was already passed in.

Signed-off-by: Venture Research <tech@ventureresearch.com>
---
 deps/hiredis/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deps/hiredis/Makefile b/deps/hiredis/Makefile
index 16b8767..0b27c82 100644
--- a/deps/hiredis/Makefile
+++ b/deps/hiredis/Makefile
@@ -11,7 +11,7 @@ HIREDIS_MAJOR=0
 HIREDIS_MINOR=10
 
 # Fallback to gcc when $CC is not in $PATH.
-CC:=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc')
+CC?=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc')
 OPTIMIZATION?=-O3
 WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings
 DEBUG?= -g -ggdb
-- 
1.8.1.2