[#81492] [Ruby trunk Feature#13618] [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid — normalperson@...

Issue #13618 has been reported by normalperson (Eric Wong).

12 messages 2017/06/01

[#81590] Re: [ruby-cvs:66197] ko1:r59023 (trunk): revert r59020 because it may fail some tests sometimes on some environment (http://ci.rvm.jp/). This revert is to check the reason of failures. — Eric Wong <normalperson@...>

ko1@ruby-lang.org wrote:

5 messages 2017/06/06

[ruby-core:81563] [Ruby trunk Bug#13631] Cannot disable site and vendor directories

From: arnoldw@...
Date: 2017-06-03 14:45:17 UTC
List: ruby-core #81563
Issue #13631 has been reported by arnoldwald (arnold w).

----------------------------------------
Bug #13631: Cannot disable site and vendor directories
https://bugs.ruby-lang.org/issues/13631

* Author: arnoldwald (arnold w)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: 2.4.1
* Backport: 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN
----------------------------------------
(Related to bug #12392?)

mkconfig.rb deletes directory settings passed to configure if they are set to "no". Perhaps verconf.h.tmpl should check to see if a setting is missing
instead of if it's set to "no"?

This patch corrects the problem for me:

~~~
24c24
< % if C["sitedir"] == "no"
---
> % if !C["sitedir"]
30c30
< % if C["vendordir"] == "no"
---
> % if !C["vendordir"]
~~~



-- 
https://bugs.ruby-lang.org/

Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>

In This Thread

Prev Next