Patrick Williams | 8b8bc41 | 2016-08-17 15:02:23 -0500 | [diff] [blame] | 1 | Revert the tar command change introduced in: |
| 2 | https://github.com/popcornmix/omxplayer/commit/201c77973155861e60492e45d35467b19b69c1c4 |
| 3 | |
| 4 | This fails if DIST is an absolute path. The old command was working just fine. |
| 5 | |
| 6 | Upstream-Status: Pending |
| 7 | |
| 8 | Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> |
| 9 | Signed-off-by: Jonathan Liu <net147@gmail.com> |
| 10 | |
| 11 | Index: 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 |