Actions
Bug #13631
closedCannot disable site and vendor directories
Description
(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"]
Updated by shyouhei (Shyouhei Urabe) over 7 years ago
- Status changed from Open to Assigned
- Assignee set to nobu (Nobuyoshi Nakada)
Updated by nobu (Nobuyoshi Nakada) about 7 years ago
- Status changed from Assigned to Closed
Applied in changeset trunk|r60141.
verconf.h.tmpl: site and vendor directories
- template/verconf.h.tmpl: disable site and vendor directories
when removed. based on the path by arnoldwald (arnold w) at
[ruby-core:81563]. [Bug #13631]
Actions
Like0
Like0Like0