blob: ab40e40a28e04ac857651e15e8dab54f7f510a68 [file] [log] [blame]
Patrick Williams8b8bc412016-08-17 15:02:23 -05001Revert the tar command change introduced in:
2https://github.com/popcornmix/omxplayer/commit/201c77973155861e60492e45d35467b19b69c1c4
3
4This fails if DIST is an absolute path. The old command was working just fine.
5
6Upstream-Status: Pending
7
8Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
9Signed-off-by: Jonathan Liu <net147@gmail.com>
10
11Index: git/Makefile
12===================================================================
13--- git.orig/Makefile
14+++ git/Makefile
15@@ -71,4 +71,4 @@ dist: omxplayer.bin
16 cp COPYING $(DIST)/usr/share/doc/
17 cp README.md $(DIST)/usr/share/doc/README
18 cp -P ffmpeg_compiled/usr/lib/*.so* $(DIST)/usr/lib/omxplayer/
19- cd $(DIST); tar -czf ../$(DIST).tgz *
20+ tar -czf omxplayer-dist.tar.gz $(DIST)
21\ No newline at end of file