mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-09-16 17:26:06 +00:00
Changed the active development repository to git://github.com/popcornmix/omxplayer.git Added dbus package as a dependency. Installed fonts directory in the default location needed by omxplayer Change-Id: Ie2e1ae73656d3c9a5cbefbf87d0792b10fcd9430 Signed-off-by: Alexandru Niculita <alexnick87@gmail.com>
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From aa424d5bcbf40c69acb13de3cb6c67688f0c9046 Mon Sep 17 00:00:00 2001
|
|
From: Andrei Gherzan <andrei@gherzan.ro>
|
|
Date: Tue, 20 Aug 2013 16:17:06 +0300
|
|
Subject: [PATCH 3/3] Remove strip step in Makefile
|
|
|
|
Build system will strip binaries so remove strip step in Makefile.
|
|
Avoid warnings/errors like:
|
|
WARNING: File '/usr/lib/omxplayer/libavutil.so.51.56.100' from
|
|
omxplayer was already stripped, this will prevent future debugging!
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
|
|
|
|
Updated patch to apply to 0dd9502ed2c43c487674939195c69680f3d98b0 revision
|
|
|
|
diff --git a/Makefile.ffmpeg b/Makefile.ffmpeg
|
|
index 5f30b51..e023927 100644
|
|
--- a/Makefile.ffmpeg
|
|
+++ b/Makefile.ffmpeg
|
|
@@ -237,7 +237,8 @@ configure:
|
|
--disable-decoder=bintext \
|
|
--disable-decoder=xbin \
|
|
--disable-decoder=idf \
|
|
- --cross-prefix=$(HOST)-
|
|
+ --cross-prefix=$(HOST)- \
|
|
+ --disable-stripping
|
|
|
|
clean:
|
|
@rm -rf ffmpeg
|
|
@@ -248,5 +249,4 @@ checkout:
|
|
|
|
install:
|
|
cd ffmpeg; make -j9 DESTDIR="$(WORK)/ffmpeg_compiled" install
|
|
- $(HOST)-strip ffmpeg_compiled/usr/lib/*.so
|
|
|