ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:81563] [Ruby trunk Bug#13631] Cannot disable site and vendor directories
       [not found] <redmine.issue-13631.20170603144517@ruby-lang.org>
@ 2017-06-03 14:45 ` arnoldw
  2017-07-15  3:07 ` [ruby-core:82073] [Ruby trunk Bug#13631][Assigned] " shyouhei
  1 sibling, 0 replies; 2+ messages in thread
From: arnoldw @ 2017-06-03 14:45 UTC (permalink / raw)
  To: ruby-core

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/

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [ruby-core:82073] [Ruby trunk Bug#13631][Assigned] Cannot disable site and vendor directories
       [not found] <redmine.issue-13631.20170603144517@ruby-lang.org>
  2017-06-03 14:45 ` [ruby-core:81563] [Ruby trunk Bug#13631] Cannot disable site and vendor directories arnoldw
@ 2017-07-15  3:07 ` shyouhei
  1 sibling, 0 replies; 2+ messages in thread
From: shyouhei @ 2017-07-15  3:07 UTC (permalink / raw)
  To: ruby-core

Issue #13631 has been updated by shyouhei (Shyouhei Urabe).

Status changed from Open to Assigned
Assignee set to nobu (Nobuyoshi Nakada)

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

* Author: arnoldwald (arnold w)
* Status: Assigned
* Priority: Normal
* Assignee: nobu (Nobuyoshi Nakada)
* 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/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-07-15  3:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <redmine.issue-13631.20170603144517@ruby-lang.org>
2017-06-03 14:45 ` [ruby-core:81563] [Ruby trunk Bug#13631] Cannot disable site and vendor directories arnoldw
2017-07-15  3:07 ` [ruby-core:82073] [Ruby trunk Bug#13631][Assigned] " shyouhei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).