From e321c69006a12577e41408a2e1ea726a19b75c00 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Fri, 22 Feb 2013 16:14:03 +0100 Subject: w32: Allow overriding a toolchain via ~/.gnupg-autogen.rc. * autogen.sh (build-w32): Include {amd64,w32_toolprefixes). -- Note that despite of the support in autogen.sh and possible other places, there is no W64 support yet. --- autogen.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 875edde..991e782 100755 --- a/autogen.sh +++ b/autogen.sh @@ -102,11 +102,12 @@ if [ "$myhost" = "w32" ]; then 64) w32root="$w64root" [ -z "$w32root" ] && w32root="$HOME/w64root" - toolprefixes="amd64-mingw32msvc" + toolprefixes="$amd64_toolprefixes amd64-mingw32msvc" ;; *) [ -z "$w32root" ] && w32root="$HOME/w32root" - toolprefixes="i586-mingw32msvc i386-mingw32msvc" + toolprefixes="$w32_toolprefixes i586-mingw32msvc" + toolprefixes="$toolprefixes i386-mingw32msvc mingw32" ;; esac echo "Using $w32root as standard install directory" >&2 -- cgit v1.2.1