[#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

[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