aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/dont-forcibly-strip.patch
blob: c8b509ba2dd5363168ce2c697e1d2115f4a20255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Descrpition: Don't strip fbxkb binary in Makefile, let dh_strip do this
Author: Dmitry Borisyuk <q1werty@i.com.ua>
Bug-Debian: https://bugs.debian.org/436824
--- a/Makefile
+++ b/Makefile
@@ -31,9 +31,6 @@
 TARGET = fbxkb
 $(TARGET): $(OBJ) 
 	$(CC) $(LDFLAGS) $(LIBS) $(OBJ) -o $@
-ifeq (,$(DEVEL))
-	strip $@
-endif
 
 all: $(TARGET)
 
bgstack15