]> sigrok.org Git - libserialport.git/commitdiff
configure.ac: Use $host_os instead of $target_os.
authorUwe Hermann <redacted>
Sat, 4 Apr 2015 16:10:18 +0000 (18:10 +0200)
committerUwe Hermann <redacted>
Mon, 6 Apr 2015 22:49:27 +0000 (00:49 +0200)
$build and $build_os refer to the machine on which the software is
built, $host and $host_os refer to the machine for which the software
is (cross-)built.

The variables $target and $target_os (despite the confusing names)
are only relevant in the context of building cross-compilers.

configure.ac

index 35f9d74df78b2019883899da7ad711d74298bf09..f01644b95c2f1a89c5e73e34a47f4fa1f689206d 100644 (file)
@@ -33,8 +33,6 @@ AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_MACRO_DIR([autostuff])
 AC_CONFIG_AUX_DIR([autostuff])
 
-AC_CANONICAL_TARGET
-
 # We require at least automake 1.11 (needed for 'silent rules').
 AM_INIT_AUTOMAKE([1.11 -Wall -Werror check-news])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
@@ -79,7 +77,7 @@ AC_SUBST(SP_LIB_LDFLAGS)
 SP_PKGLIBS=""
 SP_LIBS=""
 
-case $target_os in
+case $host_os in
 *linux*)
        AM_CONDITIONAL([LINUX], true)
        AM_CONDITIONAL([WIN32], false)