Skip to content

Commit 1bf3809

Browse files
committed
build: use host_os instead of TARGET_OS in configure output
TARGET_OS was conveninent, as a readable host name for most of our targetted 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 ```
1 parent af863b6 commit 1bf3809

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)