Skip to content

Commit 886e85a

Browse files
committed
chore(vvenc): comment out configuration and unconfiguration echo statements
* Commented out the `echo --enable-libvvenc` in `ffbuild_configure`. * Commented out the conditional check and `echo --disable-libvvenc` in `ffbuild_unconfigure`. * These changes prevent unnecessary output during the build process.
1 parent fc08c82 commit 886e85a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts.d/50-vvenc.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,12 @@ ffbuild_dockerbuild() {
3333
}
3434

3535
ffbuild_configure() {
36-
echo --enable-libvvenc
36+
# echo --enable-libvvenc
37+
return 0
3738
}
3839

3940
ffbuild_unconfigure() {
40-
(( $(ffbuild_ffver) > 700 )) || return 0
41-
echo --disable-libvvenc
41+
# (( $(ffbuild_ffver) > 700 )) || return 0
42+
# echo --disable-libvvenc
43+
return 0
4244
}

0 commit comments

Comments
 (0)