mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in: needs to quote commas.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4165800cae
commit
d1ec929188
1 changed files with 2 additions and 2 deletions
|
@ -152,7 +152,7 @@ if test ${target_archs+set}; then
|
||||||
for archs in $target_archs
|
for archs in $target_archs
|
||||||
do
|
do
|
||||||
case ",$universal_binary," in
|
case ",$universal_binary," in
|
||||||
when(*,$archs,*)
|
when([*,$archs,*])
|
||||||
;;
|
;;
|
||||||
when(*)
|
when(*)
|
||||||
cpu=`$SHELL "$srcdir/config.sub" "${archs}-${target_os}" 2>&1` || {
|
cpu=`$SHELL "$srcdir/config.sub" "${archs}-${target_os}" 2>&1` || {
|
||||||
|
@ -169,7 +169,7 @@ if test ${target_archs+set}; then
|
||||||
target_archs="$universal_binary"
|
target_archs="$universal_binary"
|
||||||
unset universal_binary
|
unset universal_binary
|
||||||
case "$target_archs" in
|
case "$target_archs" in
|
||||||
when(*,*) universal_binary=yes;;
|
when([*,*]) universal_binary=yes;;
|
||||||
when(*) unset universal_archnames;;
|
when(*) unset universal_archnames;;
|
||||||
esac
|
esac
|
||||||
AC_MSG_RESULT([$target_archs])
|
AC_MSG_RESULT([$target_archs])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue