diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-06-08 22:05:13 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 17:30:36 +0100 |
commit | 6743717e1daf6e915cc41d65639866b04abe7feb (patch) | |
tree | ec726865c24bcc79b23cf2aa654fc5e7cfdb6871 /media-libs | |
parent | media-gfx/tuxpaint: fix unquoted variable FILESDIR (diff) | |
download | gentoo-6743717e1daf6e915cc41d65639866b04abe7feb.tar.gz gentoo-6743717e1daf6e915cc41d65639866b04abe7feb.tar.bz2 gentoo-6743717e1daf6e915cc41d65639866b04abe7feb.zip |
media-libs/libvmaf: fix unquoted variable S
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libvmaf/libvmaf-2.3.0-r2.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media-libs/libvmaf/libvmaf-2.3.0-r2.ebuild b/media-libs/libvmaf/libvmaf-2.3.0-r2.ebuild index 02175276a196..587000084144 100644 --- a/media-libs/libvmaf/libvmaf-2.3.0-r2.ebuild +++ b/media-libs/libvmaf/libvmaf-2.3.0-r2.ebuild @@ -38,7 +38,7 @@ src_prepare() { # Workaround for https://bugs.gentoo.org/837221 # The paths in the tests are hard coded to look for the model folder as "../../model" - sed -i "s|\"../../model|\"../vmaf-${PV}/model|g" ${S}/libvmaf/test/* || die + sed -i "s|\"../../model|\"../vmaf-${PV}/model|g" "${S}"/libvmaf/test/* || die } multilib_src_configure() { |