From 26abf94a457a83fe6cdcc752a7fc497e7e2d3da8 Mon Sep 17 00:00:00 2001 From: fanquake Date: Thu, 4 Jun 2020 10:27:07 +0800 Subject: [PATCH] Merge #19152: build: improve build OS configure output 0fef60c63d6d2f4df8e698936221e2330ef3a244 build: improved output of configure for build OS (sachinkm77) Pull request description: The purpose of this fix is to improve output of the configure script by providing the build OS. This is done by leveraging the build_os set by the script config.sub / config.guess. #18966 ACKs for top commit: fanquake: ACK 0fef60c63d6d2f4df8e698936221e2330ef3a244 - thanks for following up. Tree-SHA512: b9f49df901a9d37eb16c67c063bb3611602a84391aa54d097a52b740f474c2785c24bf405522d15d724fde25070d354bf20b885add2ee4405a71cbe9ebab5ff3 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ad96a2d1e1..943eaf5fa5 100644 --- a/configure.ac +++ b/configure.ac @@ -1871,7 +1871,7 @@ echo " gprof enabled = $enable_gprof" echo " werror = $enable_werror" echo echo " target os = $TARGET_OS" -echo " build os = $BUILD_OS" +echo " build os = $build_os" echo echo " CC = $CC" echo " CFLAGS = $PTHREAD_CFLAGS $CFLAGS"