SHA256
1
0
forked from pool/vlc
vlc/vlc-2.1.5-fix-skins2-default-skin-creation.patch
Dominique Leuenberger 5fd59ed829 Accepting request 328698 from home:wolfi323:branches:multimedia:libs
Modify vlc-2.1.5-fix-skins2-default-skin-creation.patch to patch Makefile.am instead of Makefile.in: autoreconf overwrote the change, making the patch totally ineffective and thus the default skin was broken

OBS-URL: https://build.opensuse.org/request/show/328698
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/vlc?expand=0&rev=137
2015-09-03 06:40:54 +00:00

21 lines
724 B
Diff

Author: Stefan Seyfried <seife+obs@b1-systems.com>
New tar defaults create PAX archives which have two problems:
* VLC cannot read them
* they contain atime and thus the build time
Avoid this by passign "--format=ustar" to tar when creating skins2/default.vlt
Index: b/share/Makefile.am
===================================================================
--- a/share/Makefile.am
+++ b/share/Makefile.am
@@ -79,7 +79,7 @@ skins2/default.vlt: $(skins2_default_vlt
mkdir -p skins2
(cd "$(srcdir)/skins2"; find default -print0 | \
LC_ALL=C sort -z | \
- tar cvv --exclude .svn --no-recursion --null -T -) | \
+ tar cvv --format=ustar --exclude .svn --no-recursion --null -T -) | \
gzip -n > skins2/default.vlt
#