[前][次][番号順一覧][スレッド一覧]

ruby-changes:53678

From: samuel <ko1@a...>
Date: Wed, 21 Nov 2018 04:47:48 +0900 (JST)
Subject: [ruby-changes:53678] samuel:r65870 (trunk): Fix configure.ac typo.

samuel	2018-11-20 19:17:52 +0900 (Tue, 20 Nov 2018)

  New Revision: 65870

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65870

  Log:
    Fix configure.ac typo.

  Modified files:
    trunk/configure.ac
Index: configure.ac
===================================================================
--- configure.ac	(revision 65869)
+++ configure.ac	(revision 65870)
@@ -2325,9 +2325,9 @@ AS_IF([test "${universal_binary-no}" = y https://github.com/ruby/ruby/blob/trunk/configure.ac#L2325
     AC_DEFINE_UNQUOTED(STACK_GROW_DIRECTION, $dir)
 ])
 
-AC_MSG_CHECKING(native coroutine implementation for $target_cpu-$target_os)
+AC_MSG_CHECKING(native coroutine implementation for ${target_cpu}-${target_os})
 AS_CASE(["$target_cpu-$target_os"],
-  [x*64-darwin], [
+  [x*64-darwin*], [
     AC_MSG_RESULT(amd64)
     COROUTINE_H=coroutine/amd64/Context.h
     AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])
@@ -2344,13 +2344,13 @@ AS_CASE(["$target_cpu-$target_os"], https://github.com/ruby/ruby/blob/trunk/configure.ac#L2344
     COROUTINE_H=coroutine/x86/Context.h
     AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])
     AC_LIBOBJ([coroutine/x86/Context])
-  ]
+  ],
   [x64-mingw32], [
     AC_MSG_RESULT(x86)
     COROUTINE_H=coroutine/win64/Context.h
     AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])
     AC_LIBOBJ([coroutine/win64/Context])
-  ]
+  ],
   [*], [
     AC_MSG_RESULT(no)
   ]

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]