aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@inai.de>2019-08-14 19:22:22 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-08-15 14:12:00 +0200
commitaab47afe58124981f7391a4df43821cf2f95725f (patch)
treebcb6b2d18c4e717d1f5868c6510c816f9ea74ee3
parent67aebc9d1c6b0773b082b496a579be1a80c2a9b2 (diff)
build: switch AC_CANONICAL_TARGET for AC_CANONICAL_HOST
$target/$target_os is never used, so AC_CANONICAL_TARGET is useless. $host is, so employ AC_CANONICAL_HOST. Change-Id: I6dc505888b42cfb686043470d3a3548c24cbe1f7
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4c39681..c8bfae9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,7 +7,7 @@ dnl *This* is the root dir, even if an install-sh exists in ../ or ../../
AC_CONFIG_AUX_DIR([.])
AC_CONFIG_TESTDIR(tests)
-AC_CANONICAL_TARGET
+AC_CANONICAL_HOST
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])