vlc: fix segfault on x86_64-musl
Running "tar cvvzf ..." causes a segfault (recursive call) for x86_64-musl. Changing the command to just "tar cvzf ..." makes the segfault go away for me.
This commit is contained in:
parent
92a9d05404
commit
fc088bd10f
1 changed files with 1 additions and 0 deletions
|
@ -71,6 +71,7 @@ pre_configure() {
|
|||
sed -i -e "s|/usr/share/fonts/truetype/freefont|/usr/share/fonts/TTF|" \
|
||||
-e 's,freetype/ftsynth.h,freetype2/ftsynth.h,' \
|
||||
modules/text_renderer/freetype.c
|
||||
sed -i share/Makefile.am -e 's;tar cvvzf;tar cvzf;'
|
||||
}
|
||||
pre_build() {
|
||||
# -O[34] causes an internal compiler error with musl/gcc-4.9.2:
|
||||
|
|
Loading…
Reference in a new issue