From d1ec92918853473c77d6d7e6d93e1bec70807baa Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 9 Feb 2009 20:07:00 +0000 Subject: * configure.in: needs to quote commas. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 0d0a727ed9..82e39dbe04 100644 --- a/configure.in +++ b/configure.in @@ -152,7 +152,7 @@ if test ${target_archs+set}; then for archs in $target_archs do case ",$universal_binary," in - when(*,$archs,*) + when([*,$archs,*]) ;; when(*) cpu=`$SHELL "$srcdir/config.sub" "${archs}-${target_os}" 2>&1` || { @@ -169,7 +169,7 @@ if test ${target_archs+set}; then target_archs="$universal_binary" unset universal_binary case "$target_archs" in - when(*,*) universal_binary=yes;; + when([*,*]) universal_binary=yes;; when(*) unset universal_archnames;; esac AC_MSG_RESULT([$target_archs]) -- cgit v1.2.3