aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-bsp/kbdd/files/nostrip.patch
blob: 3afa23d4f25e553f6dd33d8324071f95ca058f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Disable stripping symbols at link time

We need these so we can extract the debug symbols and not get a QA
warning.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>

diff --git a/Makefile b/Makefile
index 8093896..ed556fd 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ OBJ	=	kbd.o dev_uinput.o
 all:	kbdd
 
 kbdd:	$(OBJ)
-	$(CC) -s -o kbdd $(OBJ) $(LDFLAGS)
+	$(CC) -o kbdd $(OBJ) $(LDFLAGS)
 
 kbd.o:	kbd.c keyboards.h