From 89bd00d804dd74451cf9e0d3bf528c1dd26d8854 Mon Sep 17 00:00:00 2001 From: luislavena Date: Fri, 21 Jan 2011 00:18:20 +0000 Subject: [PATCH] * configure.in: Fix incorrectly detected x86_64-w64-mingw32 due canonalization of target_os. Bug #3889 [ruby-core:32634] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5906557ba6..4f8d967ef7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Jan 21 09:17:00 2011 Luis Lavena + + * configure.in: Fix incorrectly detected x86_64-w64-mingw32 due + canonalization of target_os. Bug #3889 [ruby-core:32634] + Thu Jan 20 23:44:00 2011 KOSAKI Motohiro * configure.in: Fix rb_cv_va_args_macro was broken. We are using diff --git a/configure.in b/configure.in index 7d9bf1c06b..ab3436ddd1 100644 --- a/configure.in +++ b/configure.in @@ -39,9 +39,7 @@ AS_CASE(["$target_os"], [mingw*msvc], [ target_os="`echo ${target_os} | sed 's/msvc$//'`" ]) AS_CASE(["$target_cpu-$target_os"], [x86_64-mingw*], [ -# canonicalize as like mswin version. see win32/setup.mak. target_cpu=x64 -target_os="`echo ${target_os} | sed 's/32$/64/'`" ]) ])