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

ruby-changes:45373

From: nobu <ko1@a...>
Date: Sat, 28 Jan 2017 14:02:45 +0900 (JST)
Subject: [ruby-changes:45373] nobu:r57446 (trunk): mkmf.rb: fix script installation

nobu	2017-01-28 14:02:39 +0900 (Sat, 28 Jan 2017)

  New Revision: 57446

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

  Log:
    mkmf.rb: fix script installation
    
    * lib/mkmf.rb (MakeMakefile): fix condition to install script
      files.

  Modified files:
    trunk/lib/mkmf.rb
Index: lib/mkmf.rb
===================================================================
--- lib/mkmf.rb	(revision 57445)
+++ lib/mkmf.rb	(revision 57446)
@@ -2306,7 +2306,7 @@ CLEANOBJS     = *.#{$OBJEXT} #{config_st https://github.com/ruby/ruby/blob/trunk/lib/mkmf.rb#L2306
     mfile.puts(conf)
     mfile.print "
 all:    #{$extout ? "install" : target ? "$(DLLIB)" : "Makefile"}
-static: #{$extmk && !$static ? "all" : "$(STATIC_LIB)#{!$extmk ? " install-rb" : ""}"}
+static: #{$extmk && !$static ? "all" : "$(STATIC_LIB)#{$extout ? " install-rb" : ""}"}
 .PHONY: all install static install-so install-rb
 .PHONY: clean clean-so clean-static clean-rb
 " #"

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

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