blob: 634005bd277c9e2187033a5cbf246b3bcb31b1eb [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001[PATCH] force STRIP to emtpy
2
3otherwise the generate file will be stripped
4
5Signed-off-by: Roy Li <rongqing.li@windriver.com>
6---
7 Makefile.rules | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/Makefile.rules b/Makefile.rules
11index 710a2c9..e4334db 100644
12--- a/Makefile.rules
13+++ b/Makefile.rules
14@@ -31,7 +31,7 @@ LDFLAGS ?= -s
15 endif
16
17 ifdef DONTSTRIP
18-STRIP ?= :
19+STRIP = :
20 else
21 STRIP ?= strip --strip-debug
22 endif
23--
241.7.10.4
25