summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2013-02-22 16:14:03 +0100
committerWerner Koch <wk@gnupg.org>2013-02-22 16:14:03 +0100
commite321c69006a12577e41408a2e1ea726a19b75c00 (patch)
tree51563b939d2a1cf13aa20638ea5d38ffdea560e3 /autogen.sh
parent807d9cd2a27c62ab6c91b9ec1dd11675ec0382d6 (diff)
downloadlibassuan-e321c69006a12577e41408a2e1ea726a19b75c00.tar.gz
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.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh5
1 files changed, 3 insertions, 2 deletions
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