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

ruby-changes:50485

From: nobu <ko1@a...>
Date: Thu, 1 Mar 2018 11:33:32 +0900 (JST)
Subject: [ruby-changes:50485] nobu:r62618 (trunk): bisect.sh: make srcs in builddir [ci skip]

nobu	2018-03-01 11:33:15 +0900 (Thu, 01 Mar 2018)

  New Revision: 62618

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

  Log:
    bisect.sh: make srcs in builddir [ci skip]
    
    * tool/bisect.sh: also srcs needs Makefile, must in the build but
      not the source directory.

  Modified files:
    trunk/tool/bisect.sh
Index: tool/bisect.sh
===================================================================
--- tool/bisect.sh	(revision 62617)
+++ tool/bisect.sh	(revision 62618)
@@ -21,15 +21,15 @@ case $1 in https://github.com/ruby/ruby/blob/trunk/tool/bisect.sh#L21
     exec git bisect run "$path" "run-$1"
     ;;
   run-miniruby )
-    $MAKE srcs || exit 125
     cd "${0%/*}" || exit 125 # assume a copy of this script is in builddir
+    $MAKE srcs || exit 125
     $MAKE Makefile || exit 125
     $MAKE mini || exit 125
     $MAKE run || exit 1
     ;;
   run-ruby )
-    $MAKE srcs || exit 125
     cd "${0%/*}" || exit 125 # assume a copy of this script is in builddir
+    $MAKE srcs || exit 125
     $MAKE Makefile || exit 125
     $MAKE program || exit 125
     $MAKE runruby || exit 1

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

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