1From 3cbee00fe5725b87abdae80cfa2ee735e4513ca6 Mon Sep 17 00:00:00 2001
2From: Roy Li <rongqing.li@windriver.com>
3Date: Tue, 19 Aug 2014 11:31:35 +0800
4Subject: [PATCH] [PATCH] force STRIP to emtpy
5
6otherwise the generate file will be stripped
7
8Signed-off-by: Roy Li <rongqing.li@windriver.com>
9
10---
11 Makefile.rules | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/Makefile.rules b/Makefile.rules
15index 709dd04..b1f7e50 100644
16--- a/Makefile.rules
17+++ b/Makefile.rules
18@@ -31,7 +31,7 @@ LDFLAGS   ?= -s
19 endif
20
21 ifdef DONTSTRIP
22-STRIP     ?= :
23+STRIP     = :
24 else
25 STRIP     ?= strip --strip-debug
26 endif
27