1From 23a97efde2aef171312000f7859ef4c573ce2ada Mon Sep 17 00:00:00 2001 2From: Andrei Gherzan <andrei@gherzan.ro> 3Date: Sun, 19 Jan 2014 20:35:29 +0200 4Subject: [PATCH] omxplayer: Update to remote HEAD 5 6Revert the tar command change introduced in: 7https://github.com/popcornmix/omxplayer/commit/201c77973155861e60492e45d35467b19b69c1c4 8 9This fails if DIST is an absolute path. The old command was working just fine. 10 11Upstream-Status: Pending 12 13Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> 14Signed-off-by: Jonathan Liu <net147@gmail.com> 15 16--- 17 Makefile | 2 +- 18 1 file changed, 1 insertion(+), 1 deletion(-) 19 20Index: git/Makefile 21=================================================================== 22--- git.orig/Makefile 23+++ git/Makefile 24@@ -91,7 +91,7 @@ dist: omxplayer.bin omxplayer.1 25 cp README.md $(DIST)/usr/share/doc/omxplayer/README 26 cp omxplayer.1 $(DIST)/usr/share/man/man1 27 cp -P ffmpeg_compiled/usr/lib/*.so* $(DIST)/usr/lib/omxplayer/ 28- cd $(DIST); tar -czf ../$(DIST).tgz * 29+ tar -czf omxplayer-dist.tar.gz $(DIST) 30 31 install: 32 cp -r $(DIST)/* / 33