1From 6975d8a902837dd6c604f7fdd2a2f977285855ed Mon Sep 17 00:00:00 2001
2From: Andrei Gherzan <andrei@gherzan.ro>
3Date: Sun, 24 Aug 2014 00:18:05 +0200
4Subject: [PATCH] Remove strip step in Makefile
5
6Build system will strip binaries so remove strip step in Makefile.
7Avoid warnings/errors like:
8WARNING: File '/usr/lib/omxplayer/libavutil.so.51.56.100' from
9omxplayer was already stripped, this will prevent future debugging!
10
11Upstream-Status: Inappropriate [embedded specific]
12Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
13
14---
15 Makefile.ffmpeg | 5 ++---
16 1 files changed, 2 insertions(+), 3 deletions(-)
17
18Index: git/Makefile.ffmpeg
19===================================================================
20--- git.orig/Makefile.ffmpeg
21+++ git/Makefile.ffmpeg
22@@ -252,5 +252,3 @@ checkout:
23 .PHONY : install
24 install:
25 	cd ffmpeg; make -j9 DESTDIR="$(WORK)/ffmpeg_compiled" install
26-	$(HOST)-strip ffmpeg_compiled/usr/lib/*.so
27-
28