From 88d8ce56b35e889f7364f8528468811a46c78ee8 Mon Sep 17 00:00:00 2001 Message-Id: <88d8ce56b35e889f7364f8528468811a46c78ee8.1715497047.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 22 Dec 2018 10:38:52 +0000 Subject: [PATCH] etc/common-cross-config.site: Set `ac_tool_prefix' explicitly. Organization: Straylight/Edgeware From: Mark Wooding Autoconf will set this from the host alias provided on the command line, but this is done before reading the `config.site' file, so we must do this by hand here. Otherwise, `configure' only finds the generic versions of the tools, which will work if `binutils-multiarch' is installed, but not otherwise. --- etc/common-cross-config.site | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/common-cross-config.site b/etc/common-cross-config.site index 0679213..a3ee157 100644 --- a/etc/common-cross-config.site +++ b/etc/common-cross-config.site @@ -4,7 +4,7 @@ prefix=$CROSS_PREFIX libexecdir=\${exec_prefix}/lib sysconfdir=\${prefix}/etc -host_alias=$CROSS_ARCH +host_alias=$CROSS_ARCH ac_tool_prefix=$CROSS_ARCH- case ${CROSS_NATIVE_P-nil} in t) -- [mdw]