https://github.com/libsdl-org/autoconf/commit/2ab0702946045179d8718a14b477ae6515d1fd6d
From 2ab0702946045179d8718a14b477ae6515d1fd6d Mon Sep 17 00:00:00 2001
From: Zack Weinberg <[EMAIL REDACTED]>
Date: Sun, 26 Sep 2021 12:09:18 -0400
Subject: [PATCH] log_environment: Reactivate report_machine/report_ENV
accidentally left these commented out in the previous commit
---
log_environment | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/log_environment b/log_environment
index 80388ec3..724b9750 100755
--- a/log_environment
+++ b/log_environment
@@ -182,8 +182,8 @@ sub main {
ensure_empty_stdin();
print "# CI environment report\n";
- #report_machine();
- #report_ENV(\%orig_env);
+ report_machine();
+ report_ENV(\%orig_env);
report_programs(@_) if scalar(@_);
};