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

ruby-changes:42159

From: nobu <ko1@a...>
Date: Wed, 23 Mar 2016 11:38:57 +0900 (JST)
Subject: [ruby-changes:42159] nobu:r54233 (trunk): GNUmakefile.in: fix MSYS2_ARG_CONV_EXCL

nobu	2016-03-23 11:38:49 +0900 (Wed, 23 Mar 2016)

  New Revision: 54233

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

  Log:
    GNUmakefile.in: fix MSYS2_ARG_CONV_EXCL
    
    * cygwin/GNUmakefile.in (MSYS2_ARG_CONV_EXCL_PARAM):
      * add missing parentheses and remove double quotes.
      * rename to get rid of recursive references.
      * as --excludes-dir option is for a path name, its argument
        should be converted.
      [ruby-dev:49526] [Bug #12199]

  Modified files:
    trunk/ChangeLog
    trunk/cygwin/GNUmakefile.in
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 54232)
+++ ChangeLog	(revision 54233)
@@ -1,3 +1,12 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Mar 23 11:38:47 2016  Nobuyoshi Nakada  <nobu@r...>
+
+	* cygwin/GNUmakefile.in (MSYS2_ARG_CONV_EXCL_PARAM):
+	  * add missing parentheses and remove double quotes.
+	  * rename to get rid of recursive references.
+	  * as --excludes-dir option is for a path name, its argument
+	    should be converted.
+	  [ruby-dev:49526] [Bug #12199]
+
 Wed Mar 23 10:39:38 2016  Koichi ITO  <koic.ito@g...>
 
 	* variable.c: Added documentation about order of `Module#constants`
Index: cygwin/GNUmakefile.in
===================================================================
--- cygwin/GNUmakefile.in	(revision 54232)
+++ cygwin/GNUmakefile.in	(revision 54233)
@@ -89,11 +89,11 @@ $(OBJS) $(MAINOBJ): win32.h https://github.com/ruby/ruby/blob/trunk/cygwin/GNUmakefile.in#L89
 dir.$(OBJEXT) win32/win32.$(OBJEXT): win32/dir.h
 file.$(OBJEXT) win32/win32.$(OBJEXT): win32/file.h
 
-MSYS2_ARG_CONV_EXCL=--exclude=;--excludes-dir=;--name=
+MSYS2_ARG_CONV_EXCL_PARAM = --exclude=;--name=
 
-yes-test-ruby:	 export MSYS2_ARG_CONV_EXCL="$MSYS2_ARG_CONV_EXCL"
-yes-test-all:	 export MSYS2_ARG_CONV_EXCL="$MSYS2_ARG_CONV_EXCL"
-yes-test-almost: export MSYS2_ARG_CONV_EXCL="$MSYS2_ARG_CONV_EXCL"
+yes-test-ruby:	 export MSYS2_ARG_CONV_EXCL=$(MSYS2_ARG_CONV_EXCL_PARAM)
+yes-test-all:	 export MSYS2_ARG_CONV_EXCL=$(MSYS2_ARG_CONV_EXCL_PARAM)
+yes-test-almost: export MSYS2_ARG_CONV_EXCL=$(MSYS2_ARG_CONV_EXCL_PARAM)
 
 endif
 

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

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