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---
11Upstream-Status: Pending
12
13 Makefile.rules | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/Makefile.rules b/Makefile.rules
17index 709dd04..b1f7e50 100644
18--- a/Makefile.rules
19+++ b/Makefile.rules
20@@ -31,7 +31,7 @@ LDFLAGS   ?= -s
21 endif
22
23 ifdef DONTSTRIP
24-STRIP     ?= :
25+STRIP     = :
26 else
27 STRIP     ?= strip --strip-debug
28 endif
29