media-libs/svt-vp9: Use bash [[ ]] for conditionals

Signed-off-by: zyxhere💭 <zyx@envs.net>
This commit is contained in:
zyxhere💭
2026-01-31 19:24:36 +05:00
parent 475b798183
commit 712a1b6862
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ inherit cmake
DESCRIPTION="Scalable Video Technology for VP9 (SVT-VP9 Encoder)"
HOMEPAGE="https://github.com/OpenVisualCloud/SVT-VP9"
if [ ${PV} = "9999" ]; then
if [[ ${PV} = 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/OpenVisualCloud/SVT-VP9.git"
else

View File

@@ -8,7 +8,7 @@ inherit cmake
DESCRIPTION="Scalable Video Technology for VP9 (SVT-VP9 Encoder)"
HOMEPAGE="https://github.com/OpenVisualCloud/SVT-VP9"
if [ ${PV} = "9999" ]; then
if [[ ${PV} = 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/OpenVisualCloud/SVT-VP9.git"
else