From 0cefc9d14e008f0211d4308f67f015ec99c7e31b Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Fri, 14 Jul 2017 09:49:14 +0200 Subject: [PATCH] mpd: gnustl_shared -> c++_shared --- packages/mpd/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mpd/build.sh b/packages/mpd/build.sh index 853166991..0b7202969 100644 --- a/packages/mpd/build.sh +++ b/packages/mpd/build.sh @@ -47,8 +47,8 @@ termux_step_make_install () { # Work around issues on devices having ffmpeg libraries # in a system vendor dir, reported by live_the_dream on #termux: local FFMPEG_LIBS="" lib - # gnustl_shared needs to go first in every c++ app that uses audio directly. - for lib in gnustl_shared curl ssl event opus vorbis avcodec avfilter avformat avutil postproc swresample swscale sqlite3; do + # c++_shared needs to go first in every c++ app that uses audio directly. + for lib in c++_shared curl ssl event opus vorbis avcodec avfilter avformat avutil postproc swresample swscale sqlite3; do if [ -n "$FFMPEG_LIBS" ]; then FFMPEG_LIBS+=":"; fi FFMPEG_LIBS+="$TERMUX_PREFIX/lib/lib${lib}.so" done