From ad0737794c70115c7c5369f94446be375a5f53d1 Mon Sep 17 00:00:00 2001 From: NamedKitten Date: Sun, 14 Oct 2018 14:30:30 +0100 Subject: [PATCH] Fix MPV install? --- scripts/build-mpv.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build-mpv.sh b/scripts/build-mpv.sh index eec5f24..8ae7410 100644 --- a/scripts/build-mpv.sh +++ b/scripts/build-mpv.sh @@ -2,9 +2,9 @@ git clone --depth 1 https://github.com/mpv-player/mpv-build cd mpv-build -echo --enable-libmpv-shared --prefix=/usr > mpv_options +echo --enable-libmpv-shared --prefix=/usr > mpv_options echo --disable-caca --disable-wayland --disable-gl-wayland --disable-libarchive --disable-zlib --disable-tv --disable-debug-build --disable-manpage-build --disable-vapoursynth --disable-libsmbclient > mpv_options ./rebuild -j`nproc` -sudo ./install +DESTDIR=/usr sudo ./install cd ..