This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new 0b08d82425 configure: use ./src instead of src
0b08d82425 is described below
commit 0b08d8242535e31c87eb984aa16300e228274e22
Author: Nicolas George <[email protected]>
AuthorDate: Mon Jan 12 10:55:45 2026 +0100
Commit: Nicolas George <[email protected]>
CommitDate: Sat Apr 25 17:25:28 2026 +0200
configure: use ./src instead of src
Fix “do "src/doc/t2h.pm" failed, '.' is no longer in @INC; did you mean do
"./src/doc/t2h.pm"?”
when we have such a symlink.
---
configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index f4e1f13589..0a1d8f3be0 100755
--- a/configure
+++ b/configure
@@ -4538,7 +4538,7 @@ mkdir -p ffbuild
if test -f configure; then
source_path=.
elif test -f src/configure; then
- source_path=src
+ source_path=./src
else
source_path=$(cd $(dirname "$0"); pwd)
case "$source_path" in
@@ -6377,7 +6377,7 @@ link_name=$(mktemp -u $TMPDIR/name_XXXXXXXX)
mkdir "$link_dest"
$ln_s "$link_dest" "$link_name"
touch "$link_dest/test_file"
-if [ "$source_path" != "." ] && [ "$source_path" != "src" ] && ([ ! -d src ]
|| [ -L src ]) && [ -e "$link_name/test_file" ]; then
+if [ "$source_path" != "." ] && [ "$source_path" != "./src" ] && ([ ! -d src ]
|| [ -L src ]) && [ -e "$link_name/test_file" ]; then
# create link to source path
[ -e src ] && rm src
$ln_s "$source_path" src
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]