Skip to content

Commit dbe171e

Browse files
committed
3.1.0
Fix a path problem in `install-ffmpeg_4_4.sh`
1 parent c502c51 commit dbe171e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

install-ffmpeg-4_4.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,8 @@ sudo cp target/x86_64-unknown-linux-gnu/release/rav1e.h $BUILD_PATH/include/
252252
sudo cp -r target/x86_64-unknown-linux-gnu/release/rav1e $BUILD_PATH/include/
253253
sudo cp target/x86_64-unknown-linux-gnu/release/rav1e.pc $BUILD_PATH/lib/pkgconfig/
254254
sudo cp target/x86_64-unknown-linux-gnu/release/librav1e.* $BUILD_PATH/lib/
255-
sudo ln -s $BUILD_PATH/lib/librav1e.so $BUILD_PATH/lib/librav1e.so.0
255+
cd $BUILD_PATH/lib || fail
256+
sudo ln -s librav1e.so librav1e.so.0
256257

257258
# Install dependencies for GPU: ffnvcodec
258259
msg "Install the newest ffnvcodec."

0 commit comments

Comments
 (0)