Skip to content

Commit 4eedaba

Browse files
committed
Merge bitcoin/bitcoin#23947: build: use host_os instead of TARGET_OS in configure output
1bf3809 build: use host_os instead of TARGET_OS in configure output (fanquake) Pull request description: `TARGET_OS` was convenient, as a readable host name for most of our targeted platforms, however unless we add more code to configure to detect more hosts, it's easier just use `host_os` (it's also more informative). i.e FreeBSD master ```bash target os = build os = freebsd13.0 ``` this PR: ```bash target os = freebsd13.0 build os = freebsd13.0 ``` ACKs for top commit: hebasto: ACK 1bf3809 Tree-SHA512: 606d92f60ce3f2f6ab1f54e29b5c179048c62ba51336b272c081b1e009128dd83705b181cfe30991c7a51d9c63e8ba2076bfed9e6112e7d1a74a7f947c5754f5
2 parents 2f37b22 + 1bf3809 commit 4eedaba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1939,7 +1939,7 @@ echo " gprof enabled = $enable_gprof"
19391939
echo " werror = $enable_werror"
19401940
echo " LTO = $enable_lto"
19411941
echo
1942-
echo " target os = $TARGET_OS"
1942+
echo " target os = $host_os"
19431943
echo " build os = $build_os"
19441944
echo
19451945
echo " CC = $CC"

0 commit comments

Comments
 (0)