Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit fa8525c

Browse files
committed
bugfix: ffmpeg needs absolute names
1 parent f68e770 commit fa8525c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

build/ffmpeg/ffmpeg_setup.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/bin/bash
22
# Maybe, prefix should contain full absolute path
33
# it will jelp to generate proper .pc files
4+
PATH_TO_SCRIPT=`dirname $(realpath $0)`
5+
46
../../ffmpeg/configure \
5-
--prefix=./binaries \
7+
--prefix=$PATH_TO_SCRIPT/binaries \
68
--disable-programs \
79
--disable-avdevice \
810
--disable-postproc \

0 commit comments

Comments
 (0)