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 9d11bf4203 configure: write config.fate as soon as the command line is
known
9d11bf4203 is described below
commit 9d11bf4203c2655849d3ececcc13731e5beb8f96
Author: Kacper Michajłow <[email protected]>
AuthorDate: Sat Sep 5 10:13:34 2026 +0200
Commit: Kacper Michajłow <[email protected]>
CommitDate: Sat Sep 5 20:58:08 2026 +0000
configure: write config.fate as soon as the command line is known
When configure fails, currently there is no information provided in the
FATE report. We can at least show the command line, which is always
available.
Signed-off-by: Kacper Michajłow <[email protected]>
---
configure | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/configure b/configure
index 5fecdfd898..512192bec5 100755
--- a/configure
+++ b/configure
@@ -4588,6 +4588,12 @@ for v in "$@"; do
FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
done
+esc(){
+ echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
+}
+
+echo "config::::::$(esc $FFMPEG_CONFIGURATION)" > ffbuild/config.fate
+
find_things_extern(){
thing=$1
pattern=$2
@@ -8589,10 +8595,6 @@ fi
test -e Makefile || echo "include $source_path/Makefile" > Makefile
-esc(){
- echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
-}
-
echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc
$FFMPEG_CONFIGURATION)" > ffbuild/config.fate
enabled stripping || striptype="nostrip"
--
To stop receiving notification emails like this one, please contact
[email protected].
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]