ruby-changes:35741
From: nobu <ko1@a...>
Date: Tue, 7 Oct 2014 10:37:58 +0900 (JST)
Subject: [ruby-changes:35741] nobu:r47823 (trunk): configure.in: fix quoting brackets
nobu 2014-10-07 10:37:41 +0900 (Tue, 07 Oct 2014) New Revision: 47823 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47823 Log: configure.in: fix quoting brackets * configure.in (RUBY_UNIVERSAL_ARCH): fix missing quoting brackets. incorporated from http://www.opensource.apple.com/source/ruby/ruby-104/patches/configure.diff Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 47822) +++ configure.in (revision 47823) @@ -314,8 +314,8 @@ AC_MSG_RESULT([$ARCH_FLAG]) https://github.com/ruby/ruby/blob/trunk/configure.in#L314 AC_DEFUN([RUBY_UNIVERSAL_ARCH], [ # RUBY_UNIVERSAL_ARCH begin ARCH_FLAG=`expr " $CFLAGS " : ['.* \(-m[0-9][0-9]*\) ']` -test ${CFLAGS+set} && CFLAGS=`echo "$CFLAGS" | sed -e 's/ *-arch *[^ ]*//g' -e 's/ *-m32//g' -e 's/ *-m64//g'` -test ${LDFLAGS+set} && LDFLAGS=`echo "$LDFLAGS" | sed -e 's/ *-arch *[^ ]*//g' -e 's/ *-m32//g' -e 's/ *-m64//g'` +test ${CFLAGS+set} && CFLAGS=`echo "$CFLAGS" | sed [-e 's/ *-arch *[^ ]*//g' -e 's/ *-m32//g' -e 's/ *-m64//g']` +test ${LDFLAGS+set} && LDFLAGS=`echo "$LDFLAGS" | sed [-e 's/ *-arch *[^ ]*//g' -e 's/ *-m32//g' -e 's/ *-m64//g']` unset universal_binary universal_archnames if test ${target_archs+set}; then AC_MSG_CHECKING([target architectures]) Index: ChangeLog =================================================================== --- ChangeLog (revision 47822) +++ ChangeLog (revision 47823) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Tue Oct 7 10:37:39 2014 Nobuyoshi Nakada <nobu@r...> + + * configure.in (RUBY_UNIVERSAL_ARCH): fix missing quoting + brackets. incorporated from + http://www.opensource.apple.com/source/ruby/ruby-104/patches/configure.diff + Mon Oct 6 23:34:42 2014 Masaki Suketa <masaki.suketa@n...> * ext/win32ole/win32ole_param.c: use typed data. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/